#include <stdlib.h>
Go to the source code of this file.
Functions | |
static char * | itoa (long value, int len) |
Format a value into its decimal representation. |
static char* itoa | ( | long | value, | |
int | len | |||
) | [inline, static] |
Format a value into its decimal representation.
value | Number to convert. | |
len | Maximum length of the resulting string. The most significant digits are truncated if the len is too short to fit the value. |