commit | author | age | ||
6e1425 | 1 | #ifndef json_h |
H | 2 | #define json_h |
3 | ||
4 | //#import "lua.h" | |
5 | #import <lua/lua.h> | |
6 | ||
7 | #define JSON_METATABLE_NAME "wax.json" | |
8 | ||
9 | int luaopen_wax_json(lua_State *L); | |
10 | void json_parseString(lua_State *L, const char *input); | |
11 | ||
12 | #endif |