Lines Matching defs:nptr
33 ** nptr -- string containing number
35 ** base -- numeric base that 'nptr' number is based in
40 ** When 'endptr' == '\0' then the entire string 'nptr'
46 sm_strtoll(nptr, endptr, base)
47 const char *nptr;
63 s = nptr;
164 *endptr = (char *) (any ? s - 1 : nptr);
175 ** nptr -- string containing (unsigned) number
177 ** base -- numeric base that 'nptr' number is based in
181 ** When 'endptr' == '\0' then the entire string 'nptr'
187 sm_strtoull(nptr, endptr, base)
188 const char *nptr;
199 s = nptr;
254 *endptr = (char *) (any ? s - 1 : nptr);