Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: oldheating gps motorhome heating
Diff: http/httpquery.c
- 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;