HomeSort by: relevance | last modified time | path
    Searched defs:safe_strtoul (Results 1 - 1 of 1) sorted by relevancy

  /src/external/ibm-public/postfix/dist/src/global/
safe_ultostr.c 18 /* unsigned long safe_strtoul(start, end, base)
31 /* alphanumerical string. This is the reverse of safe_strtoul().
33 /* safe_strtoul() implements similar functionality as strtoul()
56 /* safe_strtoul() returns (0, EINVAL) when no conversion could
137 /* safe_strtoul - convert safe alphanumerical string to unsigned long */
139 unsigned long safe_strtoul(const char *start, char **end, int base) function
141 const char *myname = "safe_strtoul";
232 ulval2 = safe_strtoul(" ", &junk, 10);
246 ulval2 = safe_strtoul(STR(buf), &junk, base);

Completed in 16 milliseconds