lune/tests/ffi/external_closure/lib.c
2024-10-21 19:32:38 +00:00

12 lines
268 B
C

#include<stdio.h>
typedef int (*lua_callback_t)(int, int);
typedef void (*lua_hello_world_callback_t)();
int closure(lua_callback_t lua_closure) {
return lua_closure(12, 24) * 2;
}
void hello_world(lua_hello_world_callback_t lua_closure) {
lua_closure();
}