1 /* vi: set sw=4 ts=4: */
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
7 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
11 #include <math.h> /* just for HUGE_VAL */
13 #define NOT_DIGIT(a) (((unsigned char)(a-'0')) > 9)
15 double FAST_FUNC bb_strtod(const char *arg, char **endp)
20 /* Allow .NN form. People want to use "sleep .15" etc */
21 if (arg[0] != '-' && arg[0] != '.' && NOT_DIGIT(arg[0]))
24 v = strtod(arg, &endptr);
28 /* "1234abcg" or out-of-range? */
29 if (isalnum(endptr[0]) || errno) {
34 /* good number, just suspicious terminator */
41 /* String to timespec: "NNNN[.NNNNN]" -> struct timespec.
42 * Can be used for other fixed-point needs.
43 * Returns pointer past last converted char,
44 * and returns errno similar to bb_strtoXX functions.
46 char* FAST_FUNC bb_str_to_ts(struct timespec *ts, const char *arg)
48 if (sizeof(ts->tv_sec) <= sizeof(int))
49 ts->tv_sec = bb_strtou(arg, &arg, 10);
50 else if (sizeof(ts->tv_sec) <= sizeof(long))
51 ts->tv_sec = bb_strtoul(arg, &arg, 10);
53 ts->tv_sec = bb_strtoull(arg, &arg, 10);
59 /* !EINVAL: number is not ok (alphanumeric ending, overflow etc) */
63 if (!*++arg) /* "NNN." */
66 { /* "NNN.xxx" - parse xxx */
69 char buf[10]; /* we never use more than 9 digits */
71 /* Need to make a copy to avoid false overflow */
72 safe_strncpy(buf, arg, 10);
73 ts->tv_nsec = bb_strtou(buf, &p, 10);
76 /* normalize to nsec */
81 while (isdigit(*arg)) /* skip possible 10th plus digits */