Used in Live Traffic Update Nokia LCD Display Project
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; }