Andrew Boyson / web

Dependents:   oldheating gps motorhome heating

Revision:
141:1dac268a197d
Parent:
130:9a5b8fe308f1
Child:
159:bda5b89e8c19
--- a/http/httpquery.c	Wed Jun 03 10:47:51 2020 +0000
+++ b/http/httpquery.c	Tue Jun 09 14:33:55 2020 +0000
@@ -64,6 +64,10 @@
 {
     return (int)strtol(pValue, NULL, 10);
 }
+double HttpQueryValueAsDouble(char* pValue)
+{
+    return strtod(pValue, NULL);
+}
 char* HttpCookiesSplit(char* p, char** ppName, char** ppValue) //returns the start of the next name value pair
 {    
     *ppValue   = NULL;