summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/projects/xmake_cli/hello/src/lni/main.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/projects/xmake_cli/hello/src/lni/main.c b/tests/projects/xmake_cli/hello/src/lni/main.c
index 3067e9b39..f2bb87325 100644
--- a/tests/projects/xmake_cli/hello/src/lni/main.c
+++ b/tests/projects/xmake_cli/hello/src/lni/main.c
@@ -1,21 +1,19 @@
#include <xmake/xmake.h>
-static tb_int_t lni_test_hello(lua_State* lua)
-{
+static tb_int_t lni_test_hello(lua_State* lua) {
lua_pushliteral(lua, "hello xmake!");
return 1;
}
-static tb_void_t lni_initalizer(xm_engine_ref_t engine, lua_State* lua)
-{
- static luaL_Reg const lni_test_funcs[] =
- {
+
+static tb_void_t lni_initalizer(xm_engine_ref_t engine, lua_State* lua) {
+ static luaL_Reg const lni_test_funcs[] = {
{"hello", lni_test_hello}
, {tb_null, tb_null}
};
xm_engine_register(engine, "test", lni_test_funcs);
}
-tb_int_t main(tb_int_t argc, tb_char_t** argv)
-{
+
+tb_int_t main(tb_int_t argc, tb_char_t** argv) {
tb_char_t* taskargv[] = {"lua", "-D", "lua.main", tb_null};
return xm_engine_run("hello", argc, argv, taskargv, lni_initalizer);
}