Skip to content

Instantly share code, notes, and snippets.

@klgraham
Last active April 9, 2023 21:02
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save klgraham/35bd1d2b0f4b57be5d2bbc30f6721d46 to your computer and use it in GitHub Desktop.
Save klgraham/35bd1d2b0f4b57be5d2bbc30f6721d46 to your computer and use it in GitHub Desktop.
Example of using Lua C API to call a Lua function from C
#include <stdio.h>
#include <stdlib.h>
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include "luajit.h"
int main(int argc, char *argv[])
{
lua_State *L;
L = luaL_newstate(); // open Lua
luaL_openlibs(L); // load Lua libraries
int n = atoi(argv[1]);
luaL_loadfile(L, "factorial.lua");
lua_pcall(L, 0, 0, 0); // Execute script once to create and assign functions
lua_getglobal(L, "factorial"); // function to be called
lua_pushnumber(L, n); // push argument
if (lua_pcall(L, 1, 1, 0) != 0) // 1 argument, 1 return value
{
fprintf(stderr, "%s\n", lua_tostring(L, -1));
return 1;
}
int result = lua_tonumber(L, -1);
lua_pop(L, 1); // pop returned value
printf("%d! is %d\n", n, result);
lua_close(L);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment