hush/libbb/xgetlarg.c

38 lines
756 B
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
/*
* Copyright (C) 2003-2004 Erik Andersen <andersen@codepoet.org>
*/
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <errno.h>
#include <assert.h>
2003-03-19 09:13:01 +00:00
#include <ctype.h>
#include "busybox.h"
extern long bb_xgetlarg(const char *arg, int base, long lower, long upper)
{
long result;
char *endptr;
int errno_save = errno;
assert(arg!=NULL);
2003-03-19 09:13:01 +00:00
2005-08-16 05:39:07 +00:00
/* Don't allow leading whitespace.
* Wrap isspace in () to make sure we call the
* function rather than the macro. */
if ((isspace)(*arg)) {
2003-03-19 09:13:01 +00:00
bb_show_usage();
}
errno = 0;
result = strtol(arg, &endptr, base);
2003-03-19 09:13:01 +00:00
if (errno != 0 || *endptr!='\0' || endptr==arg || result < lower || result > upper)
bb_show_usage();
errno = errno_save;
return result;
}