14 lines
473 B
C
14 lines
473 B
C
#ifndef RJP_INTERNAL_H
|
|
#define RJP_INTERNAL_H
|
|
|
|
#include "rjp.h"
|
|
|
|
char* _rjp__parse_string(struct JSON_value* root, const char* str, int* len, int* row, int* column);
|
|
size_t _rjp__object_strlen(struct JSON_value* root);
|
|
void _rjp__add_member(struct JSON_object* j, char* str, size_t len);
|
|
void _rjp__add_member_no_alloc(struct JSON_object* j, char* str, size_t len);
|
|
void _rjp__add_element(struct JSON_array* j);
|
|
size_t _rjp__object_strlen(struct JSON_value* root);
|
|
|
|
#endif
|