Add estrtoul()

This commit is contained in:
sin
2015-01-30 13:24:41 +00:00
parent e077e0c00a
commit b90ca482a0
3 changed files with 28 additions and 0 deletions

26
libutil/estrtoul.c Normal file
View File

@@ -0,0 +1,26 @@
/* See LICENSE file for copyright and license details. */
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "../util.h"
unsigned long
estrtoul(const char *s, int base)
{
char *end;
unsigned long n;
errno = 0;
n = strtoul(s, &end, base);
if (*end != '\0') {
if (base == 0)
eprintf("%s: not an integer\n", s);
else
eprintf("%s: not a base %d integer\n", s, base);
}
if (errno != 0)
eprintf("%s:", s);
return n;
}