diff options
| author | sanine-a <sanine.not@pm.me> | 2021-07-03 01:20:01 -0500 |
|---|---|---|
| committer | sanine-a <sanine.not@pm.me> | 2021-07-03 01:20:01 -0500 |
| commit | f83e8d242b8a719733498181f4cad3fbb9c97ca7 (patch) | |
| tree | edc44f1e16499f0138d62ed45fb12bba42840570 /src/honeysuckle.c | |
| parent | db2b31a335b531d7e54ab3e7d494bbf33050ac60 (diff) | |
create hs_process_table_tests.c and add basic table processing test
Diffstat (limited to 'src/honeysuckle.c')
| -rw-r--r-- | src/honeysuckle.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/honeysuckle.c b/src/honeysuckle.c index 8cb8194..11f3f53 100644 --- a/src/honeysuckle.c +++ b/src/honeysuckle.c @@ -34,6 +34,14 @@ int hs_create_enum(lua_State *L, ...) } +void hs_process_table(lua_State *L, int table_index, void *data, ...) +{ + L = L; + table_index = table_index; + data = data; +} + + void hs_pushstring(lua_State *L, const char *format_string, ...) { lua_pushnumber(L, 0.4); |
