Home | History | Annotate | Download | only in openbsd-compat

Lines Matching refs:base

48 strtoul(const char *nptr, char **endptr, int base)
70 if ((base == 0 || base == 16) &&
74 base = 16;
76 if (base == 0)
77 base = c == '0' ? 8 : 10;
79 cutoff = ULONG_MAX / (unsigned long)base;
80 cutlim = ULONG_MAX % (unsigned long)base;
88 if (c >= base)
98 acc *= (unsigned long)base;