aboutsummaryrefslogtreecommitdiffstats
path: root/src/string.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string.c')
-rw-r--r--src/string.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/string.c b/src/string.c
index 6e28778b..f59a5fd6 100644
--- a/src/string.c
+++ b/src/string.c
@@ -107,15 +107,3 @@ serd_strlen(const char* str, SerdNodeFlags* flags)
return strlen(str);
}
-
-double
-serd_strtod(const char* const str, const char** end)
-{
- double value = (double)NAN;
- const ExessResult r = exess_read_double(&value, str);
- if (end) {
- *end = str + r.count;
- }
-
- return r.status ? (double)NAN : value;
-}