diff options
| author | amelia squires <[email protected]> | 2024-08-29 00:10:05 -0500 |
|---|---|---|
| committer | amelia squires <[email protected]> | 2024-08-29 00:10:05 -0500 |
| commit | f605f194eb45235989fc5ec91505201498834f24 (patch) | |
| tree | 0ebd6d7755e5827516041e00f1e6df4285618b1a /src/test.h | |
| parent | 6cbc0f817066b8bbab84a9be466223652b628d42 (diff) | |
should be working + tests
Diffstat (limited to 'src/test.h')
| -rw-r--r-- | src/test.h | 9 |
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} +}; |
