//////////////////// Convert numbers
Converts number of type NUM to string and stores it in buff
Internally uses snprintf, string might be cut down to fit in buffer
To check for buffer overflow you might compare length of buff and returned string, if they are equal there might be not enought space in buffer
NULL char is always added at the end of the string
//////////////////// Convert numbers Converts number of type NUM to string and stores it in buff Internally uses snprintf, string might be cut down to fit in buffer To check for buffer overflow you might compare length of buff and returned string, if they are equal there might be not enought space in buffer NULL char is always added at the end of the string