Fork of SandBox's original mbed-http (https://os.mbed.com/teams/sandbox/code/mbed-http/) and update for MbedOS6+ Content of TESTS folder was replaced with basic examples form original SandBox's HelloWorld

Revision:
9:1289162d9530
Parent:
8:6156404278bb
Child:
14:3004056e4661
diff -r 6156404278bb -r 1289162d9530 source/http_response.h
--- a/source/http_response.h	Thu Mar 02 11:50:38 2017 +0100
+++ b/source/http_response.h	Thu Mar 02 13:14:36 2017 +0100
@@ -172,7 +172,6 @@
 
     char tolower(char c) {
         if(('A' <= c) && (c <= 'Z')) {
-            printf("toLower %c %c\n", c, 'a' + (c - 'A'));
             return 'a' + (c - 'A');
         }