Wuyx
2017-01-04 06f1afda3a26e7c24f192d9615e27d6ba19724f7
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