low_str_itoa

Convert an integer to a string. 
l_text 		low_str_itoa (
		l_int 		value, 
		l_text 	string, 
		l_int 		radix 
);
      

Return Value
Returns a pointer to string. There is no error return.
Parameters
value
Number to be converted
string
String result
radix
Base of value; must be in the range 2 – 36
Remarks
The low_str_itoa function convert the digits of the given value argument to a null-terminated character 
string and stores the result (up to 33 bytes) in string. If radix equals 10 and value is negative, the first 
character of the stored string is the minus sign ( – ).