2006-11-25 20:14:13 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* ascii-to-numbers implementations for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2, see file LICENSE in this source tree.
|
2006-11-25 20:14:13 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
#define type long long
|
|
|
|
#define xstrtou(rest) xstrtoull##rest
|
|
|
|
#define xstrto(rest) xstrtoll##rest
|
|
|
|
#define xatou(rest) xatoull##rest
|
|
|
|
#define xato(rest) xatoll##rest
|
|
|
|
#define XSTR_UTYPE_MAX ULLONG_MAX
|
|
|
|
#define XSTR_TYPE_MAX LLONG_MAX
|
|
|
|
#define XSTR_TYPE_MIN LLONG_MIN
|
|
|
|
#define XSTR_STRTOU strtoull
|
|
|
|
#include "xatonum_template.c"
|
|
|
|
|
|
|
|
#if ULONG_MAX != ULLONG_MAX
|
|
|
|
#define type long
|
|
|
|
#define xstrtou(rest) xstrtoul##rest
|
|
|
|
#define xstrto(rest) xstrtol##rest
|
|
|
|
#define xatou(rest) xatoul##rest
|
|
|
|
#define xato(rest) xatol##rest
|
|
|
|
#define XSTR_UTYPE_MAX ULONG_MAX
|
|
|
|
#define XSTR_TYPE_MAX LONG_MAX
|
|
|
|
#define XSTR_TYPE_MIN LONG_MIN
|
|
|
|
#define XSTR_STRTOU strtoul
|
|
|
|
#include "xatonum_template.c"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if UINT_MAX != ULONG_MAX
|
2007-06-13 02:24:54 +05:30
|
|
|
static ALWAYS_INLINE
|
2006-12-17 05:18:13 +05:30
|
|
|
unsigned bb_strtoui(const char *str, char **end, int b)
|
2006-11-25 20:19:04 +05:30
|
|
|
{
|
|
|
|
unsigned long v = strtoul(str, end, b);
|
|
|
|
if (v > UINT_MAX) {
|
|
|
|
errno = ERANGE;
|
|
|
|
return UINT_MAX;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
2006-11-25 20:14:13 +05:30
|
|
|
#define type int
|
|
|
|
#define xstrtou(rest) xstrtou##rest
|
|
|
|
#define xstrto(rest) xstrtoi##rest
|
|
|
|
#define xatou(rest) xatou##rest
|
|
|
|
#define xato(rest) xatoi##rest
|
|
|
|
#define XSTR_UTYPE_MAX UINT_MAX
|
|
|
|
#define XSTR_TYPE_MAX INT_MAX
|
|
|
|
#define XSTR_TYPE_MIN INT_MIN
|
2006-11-25 20:19:04 +05:30
|
|
|
/* libc has no strtoui, so we need to create/use our own */
|
|
|
|
#define XSTR_STRTOU bb_strtoui
|
2006-11-25 20:14:13 +05:30
|
|
|
#include "xatonum_template.c"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* A few special cases */
|
|
|
|
|
2010-08-12 17:44:45 +05:30
|
|
|
int FAST_FUNC xatoi_positive(const char *numstr)
|
2006-11-25 20:14:13 +05:30
|
|
|
{
|
2006-11-25 20:19:04 +05:30
|
|
|
return xatou_range(numstr, 0, INT_MAX);
|
2006-11-25 20:14:13 +05:30
|
|
|
}
|
|
|
|
|
2008-06-27 08:22:20 +05:30
|
|
|
uint16_t FAST_FUNC xatou16(const char *numstr)
|
2006-11-25 20:14:13 +05:30
|
|
|
{
|
2006-11-25 20:19:04 +05:30
|
|
|
return xatou_range(numstr, 0, 0xffff);
|
2006-11-25 20:14:13 +05:30
|
|
|
}
|
2013-07-14 03:19:45 +05:30
|
|
|
|
|
|
|
const struct suffix_mult bkm_suffixes[] = {
|
|
|
|
{ "b", 512 },
|
|
|
|
{ "k", 1024 },
|
|
|
|
{ "m", 1024*1024 },
|
|
|
|
{ "", 0 }
|
|
|
|
};
|