15 lines
469 B
C
15 lines
469 B
C
#ifndef RJP_INTERNAL_H
|
|
#define RJP_INTERNAL_H
|
|
|
|
#include "rjp.h"
|
|
|
|
char* _rjp__parse_string(RJP_value* root, const char* str, int* len, int* row, int* column);
|
|
size_t _rjp__object_strlen(RJP_value* root);
|
|
void _rjp__add_member(RJP_object* j, char* str, size_t len);
|
|
void _rjp__add_member_no_alloc(RJP_object* j, char* str, size_t len);
|
|
void _rjp__add_element(RJP_array* j);
|
|
size_t _rjp__object_strlen(RJP_value* root);
|
|
size_t _rjp__value_strlen(RJP_value* root);
|
|
|
|
#endif
|