2 * C99-compatible strtod() implementation
3 * Copyright (c) 2012 Ronald S. Bultje <rsbultje@gmail.com>
5 * This file is part of Libav.
7 * Libav is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * Libav is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with Libav; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "libavutil/avstring.h"
26 #include "libavutil/mathematics.h"
28 static char *check_nan_suffix(char *s
)
35 while ((*s
>= 'a' && *s
<= 'z') || (*s
>= 'A' && *s
<= 'Z') ||
36 (*s
>= '0' && *s
<= '9') || *s
== '_')
39 return *s
== ')' ? s
+ 1 : start
;
43 double strtod(const char *, char **);
45 double avpriv_strtod(const char *nptr
, char **endptr
)
50 /* Skip leading spaces */
51 while (av_isspace(*nptr
))
54 if (!av_strncasecmp(nptr
, "infinity", 8)) {
57 } else if (!av_strncasecmp(nptr
, "inf", 3)) {
60 } else if (!av_strncasecmp(nptr
, "+infinity", 9)) {
63 } else if (!av_strncasecmp(nptr
, "+inf", 4)) {
66 } else if (!av_strncasecmp(nptr
, "-infinity", 9)) {
69 } else if (!av_strncasecmp(nptr
, "-inf", 4)) {
72 } else if (!av_strncasecmp(nptr
, "nan", 3)) {
73 end
= check_nan_suffix(nptr
+ 3);
75 } else if (!av_strncasecmp(nptr
, "+nan", 4) ||
76 !av_strncasecmp(nptr
, "-nan", 4)) {
77 end
= check_nan_suffix(nptr
+ 4);
79 } else if (!av_strncasecmp(nptr
, "0x", 2) ||
80 !av_strncasecmp(nptr
, "-0x", 3) ||
81 !av_strncasecmp(nptr
, "+0x", 3)) {
82 /* FIXME this doesn't handle exponents, non-integers (float/double)
83 * and numbers too large for long long */
84 res
= strtoll(nptr
, &end
, 16);
86 res
= strtod(nptr
, &end
);