0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 20:03:10 +02:00
mpv/waftools/fragments/lua.c
2013-11-23 16:17:52 +01:00

25 lines
468 B
C

#include <stdlib.h>
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
// filled on the python side with .format()
{additional_lua_test_header}
static void test_lua(void) {{
lua_State *L = luaL_newstate();
lua_pushstring(L, "test");
lua_setglobal(L, "test");
}}
static void test_other(void) {{
// filled on the python side with .format()
{additional_lua_test_code}
}}
int main(void) {{
test_lua();
test_other();
return 0;
}}