danieljimeneznz / tinyjson

A JSON CPP library for use in memory constraint environments. Originally Designed for the ATtiny841.
MIT License
0 stars 0 forks source link

Add functionality to create a string given a Value #9

Open danieljimeneznz opened 7 years ago

danieljimeneznz commented 7 years ago

No functionality currently to make a string out of a value. This might be handy to have. Unsure about how to allocate memory to do this as allocating to heap will cause that memory to never be free'd (unless the user after calling this function free's the string memory, which is not an ideal way of adding this functionality).