blob: 3f70b679be52b801cc5a99b0949f98bfbaf0796a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#ifndef CJSON_LUACJSON_H
#define CJSON_LUACJSON_H
#include "lua.h"
int lua_cjson_new(lua_State *l);
int luaopen_cjson(lua_State *l);
int luaopen_cjson_safe(lua_State *l);
#endif // CJSON_LUACJSON_H
|