cosmopolitan/tool/net/ljson.h

15 lines
326 B
C
Raw Normal View History

2022-07-09 18:44:19 +00:00
#ifndef COSMOPOLITAN_TOOL_NET_LJSON_H_
#define COSMOPOLITAN_TOOL_NET_LJSON_H_
#include "third_party/lua/lauxlib.h"
COSMOPOLITAN_C_START_
2022-07-12 06:06:49 +00:00
struct DecodeJson {
int rc;
const char *p;
};
struct DecodeJson DecodeJson(struct lua_State *, const char *, size_t);
2022-07-09 18:44:19 +00:00
COSMOPOLITAN_C_END_
#endif /* COSMOPOLITAN_TOOL_NET_LJSON_H_ */