hank
2017-03-03 71172661cf242ba67cf68c387ce24079ead55930
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