vfwprintf.c | 142 static CHAR_T *__ultoa(u_long, CHAR_T *, int, int, const char *, int, 262 __ultoa(u_long val, CHAR_T *endp, int base, int octzero, const char *xdigs, function in typeref:typename:CHAR_T * 338 /* Identical to __ultoa, but for intmax_t. */ 347 /* quick test for small values; __ultoa is typically much faster */ 348 /* (perhaps instead we should run until small, then call __ultoa?) */ 350 return __ultoa((u_long)val, endp, base, octzero, xdigs, 1380 result = __ultoa(ulval, cp, base,
|