json-maker icon indicating copy to clipboard operation
json-maker copied to clipboard

C library used to code JSON objects in null-terminated strings

Results 7 json-maker issues
Sort by recently updated
recently updated
newest added

prototype in json-maker.h is `char* json_objOpen( char* dest, char const* name, size_t* remLen );` but the sample code is... `dest = json_objOpen( dest, name ); ` also noticed the code...

Hi, thanks for your useful repository Here is my changes This going to fix compile-time errors in test.c and example.c files. Also, I fixed buffer overflow issue and added a...

PR #5 introduced an API change that hasn't been reflected onto the tests codebase, resulting in failing build. @Caleb-Daniels-SFC

Hi! How do I set the output format for double? Example of how this is set for sprintf "%3.6f"

Hi, Thanks for publishing this library! I have just been looking at using it in an embedded project, but it seems that when constructing json objects, it is possible to...

Does the solidus character needs to be escaped? Per the rfc https://www.ietf.org/rfc/rfc4627.txt All Unicode characters may be placed within the quotation marks except for the characters that must be escaped:...