mirror of
https://github.com/lune-org/lune.git
synced 2025-04-03 18:10:54 +01:00
17 lines
438 B
C
Vendored
17 lines
438 B
C
Vendored
#include<stdio.h>
|
|
|
|
typedef int (*lua_closure_t)(int, int);
|
|
int call_closure(lua_closure_t lua_closure) {
|
|
return lua_closure(12, 24) * 2;
|
|
}
|
|
|
|
typedef void (*lua_hello_world_t)();
|
|
void call_hello_world(lua_hello_world_t lua_closure) {
|
|
lua_closure();
|
|
}
|
|
|
|
typedef int (*lua_closure_with_pointer_t)(int, int*);
|
|
int call_closure_with_pointer(lua_closure_with_pointer_t lua_closure) {
|
|
int b = 24;
|
|
return lua_closure(12, &b) * 2;
|
|
}
|