aboutsummaryrefslogtreecommitdiff
path: root/src/test.h
diff options
context:
space:
mode:
authoramelia squires <[email protected]>2024-08-29 00:10:05 -0500
committeramelia squires <[email protected]>2024-08-29 00:10:05 -0500
commit4f0b3173cae639de5874afaf2df6ab113c7277fd (patch)
tree0ebd6d7755e5827516041e00f1e6df4285618b1a /src/test.h
parentd0c7c5b0dd9d20bfc323dc10c67f9de12d58c343 (diff)
should be working + tests
Diffstat (limited to 'src/test.h')
-rw-r--r--src/test.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test.h b/src/test.h
new file mode 100644
index 0000000..01527c6
--- /dev/null
+++ b/src/test.h
@@ -0,0 +1,9 @@
+#include "lua.h"
+
+int ld_match(lua_State*);
+
+static const luaL_Reg test_function_list [] = {
+ {"_match", ld_match},
+
+ {NULL,NULL}
+};