Lines Matching defs:Strtoul
7891 =for apidoc AmTR|NV|Strtoul|NN const char * const s|NULLOK char ** e|int base
7945 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && \
7953 # if !defined(Strtoul) && defined(HAS_STRTOULL)
7954 # define Strtoul strtoull
7956 # if !defined(Strtoul) && defined(HAS_STRTOUQ)
7957 # define Strtoul strtouq
7961 #if !defined(Strtoul) && defined(HAS_STRTOUL)
7962 # define Strtoul strtoul
7964 #if !defined(Strtoul) && defined(HAS_STRTOL) /* Last resort. */
7965 # define Strtoul(s, e, b) strchr((s), '-') ? ULONG_MAX : (unsigned long)strtol((s), (e), (b))
7968 # define Atoul(s) Strtoul(s, NULL, 10)