Lines Matching refs:nptr
34 double atof (const char* nptr);
35 int atoi (const char* nptr);
36 long atol (const char* nptr);
37 long long atoll(const char* nptr); // C99
38 double strtod (const char* restrict nptr, char** restrict endptr);
39 float strtof (const char* restrict nptr, char** restrict endptr); // C99
40 long double strtold (const char* restrict nptr, char** restrict endptr); // C99
41 long strtol (const char* restrict nptr, char** restrict endptr, int base);
42 long long strtoll (const char* restrict nptr, char** restrict endptr, int base); // C99
43 unsigned long strtoul (const char* restrict nptr, char** restrict endptr, int base);
44 unsigned long long strtoull(const char* restrict nptr, char** restrict endptr, int base); // C99