Home
last modified time | relevance | path

Searched refs:Strtoul (Results 1 – 6 of 6) sorted by relevance

/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/todo/
H A D5006000115 Strtoul # U
/openbsd/gnu/usr.bin/perl/
H A Dperl.h7945 #if !defined(Strtoul) && defined(USE_64_BIT_INT) && defined(UV_IS_QUAD) && \
7953 # if !defined(Strtoul) && defined(HAS_STRTOULL)
7954 # define Strtoul strtoull macro
7956 # if !defined(Strtoul) && defined(HAS_STRTOUQ)
7957 # define Strtoul strtouq macro
7961 #if !defined(Strtoul) && defined(HAS_STRTOUL)
7962 # define Strtoul strtoul macro
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)) macro
7968 # define Atoul(s) Strtoul(s, NULL, 10)
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/base/
H A D5006000616 Strtoul # E
/openbsd/gnu/usr.bin/perl/dist/Devel-PPPort/parts/
H A Dapidoc.fnc831 AmTRd|NV|Strtoul|NN const char * const s|NULLOK char ** e|int base
/openbsd/gnu/usr.bin/perl/pod/
H A Dperlclib.pod289 strtoul(s, &p, n) Strtoul(s, &p, b)
H A Dperlhacktips.pod1112 IV/UV-friendly macro disguises, Strtol() and Strtoul(), or Atol() and