X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=includes%2Fstdlib.h;h=f84851b0df90d69aa27fbcdb0bd9a556b89e35cb;hb=22fe62c767cf2872c797b8daf58daf7f726784bf;hp=06eb9ce628335167c48184ee89fabda72df9d140;hpb=02c9753655c68abce19755f99d0deb6c86b64c9f;p=fw%2Fpdclib diff --git a/includes/stdlib.h b/includes/stdlib.h index 06eb9ce..f84851b 100644 --- a/includes/stdlib.h +++ b/includes/stdlib.h @@ -52,6 +52,9 @@ long double strtold( const char * _PDCLIB_restrict nptr, char * * _PDCLIB_restri LLONG_MIN, LLONG_MAX, or ULLONG_MAX respectively, depending on the sign of the integer representation and the return type, and errno is set to ERANGE. */ +/* There is strtoimax() and strtoumax() in operating on intmax_t / + uintmax_t, if the long long versions do not suit your needs. +*/ long int strtol( const char * _PDCLIB_restrict nptr, char * * _PDCLIB_restrict endptr, int base ); long long int strtoll( const char * _PDCLIB_restrict nptr, char * * _PDCLIB_restrict endptr, int base ); unsigned long int strtoul( const char * _PDCLIB_restrict nptr, char * * _PDCLIB_restrict endptr, int base );