diff options
| author | ame <[email protected]> | 2023-12-28 19:02:03 -0600 |
|---|---|---|
| committer | ame <[email protected]> | 2023-12-28 19:02:03 -0600 |
| commit | 8c591404e3ce9a36acb5fbe26ceaf5d6f63048e5 (patch) | |
| tree | 6a266ec7e4f61e90c23ce6df557203f948d36d29 /src/io.h | |
| parent | 3c4ce79c929a16602eecbb2a6600e1cea871439f (diff) | |
json parsing :p
Diffstat (limited to 'src/io.h')
| -rw-r--r-- | src/io.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,8 @@ int l_warn(lua_State*); int l_error(lua_State*); int l_pprint(lua_State*); +int l_json_parse(lua_State*); + static const luaL_Reg io_function_list [] = { {"readfile",l_readfile}, {"debug",l_debug}, @@ -32,5 +34,6 @@ static const luaL_Reg io_function_list [] = { {"warn",l_warn}, {"error",l_error}, {"pprint",l_pprint}, + {"json_parse",l_json_parse}, {NULL,NULL} }; |
