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.
Fork of mbed-http by
Diff: source/http_response.h
- Revision:
- 8:6156404278bb
- Parent:
- 7:2e3eedb9ca5c
- Child:
- 9:1289162d9530
diff -r 2e3eedb9ca5c -r 6156404278bb source/http_response.h
--- a/source/http_response.h Fri Feb 24 11:20:16 2017 +0100
+++ b/source/http_response.h Thu Mar 02 11:50:38 2017 +0100
@@ -170,6 +170,15 @@
}
}
+ char tolower(char c) {
+ if(('A' <= c) && (c <= 'Z')) {
+ printf("toLower %c %c\n", c, 'a' + (c - 'A'));
+ return 'a' + (c - 'A');
+ }
+
+ return c;
+ }
+
int status_code;
string status_message;
