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 NetServices by
Diff: services/http/util/base64.cpp
- Revision:
- 5:fa27dde97304
- Parent:
- 0:ac1725ba162c
--- a/services/http/util/base64.cpp Sun Nov 21 17:13:44 2010 +0000 +++ b/services/http/util/base64.cpp Sat Nov 27 23:23:43 2010 +0000 @@ -30,7 +30,7 @@ #include <string.h> -unsigned int base64enc_len(const char *str) { +unsigned int base64enc_len(const char* str) { return (((strlen(str)-1)/3)+1)<<2; }