From edf4beae75709472bfc29a824afdd0184fc65337 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 18 Dec 2019 20:05:18 -0500 Subject: Add support for parsing NaN, INF, and -INF --- src/string.c | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'src/string.c') diff --git a/src/string.c b/src/string.c index 635588ae..488d0ae3 100644 --- a/src/string.c +++ b/src/string.c @@ -114,6 +114,19 @@ serd_strtod(const char* str, size_t* end) { double result = 0.0; +#define SET_END(index) if (end) { *end = index; } + + if (!strcmp(str, "NaN")) { + SET_END(3); + return NAN; + } else if (!strcmp(str, "-INF")) { + SET_END(4); + return -INFINITY; + } else if (!strcmp(str, "INF")) { + SET_END(3); + return INFINITY; + } + // Point s at the first non-whitespace character const char* s = str; while (is_space(*s)) { ++s; } @@ -146,10 +159,7 @@ serd_strtod(const char* str, size_t* end) result *= pow(10, expt * expt_sign); } - if (end) { - *end = s - str; - } - + SET_END(s - str); return result * sign; } -- cgit v1.2.1