diff options
Diffstat (limited to 'include/base64.h')
-rw-r--r-- | include/base64.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/base64.h b/include/base64.h index 78ebc9caf47..4ac0aa72ad8 100644 --- a/include/base64.h +++ b/include/base64.h @@ -20,9 +20,6 @@ extern "C" { #endif - -#include <mysys_priv.h> - /* Calculate how much memory needed for dst of base64_encode() */ @@ -41,7 +38,8 @@ int base64_encode(const void *src, size_t src_len, char *dst); /* Decode a base64 string into data */ -int base64_decode(const char *src, size_t src_len, void *dst); +int base64_decode(const char *src, size_t src_len, + void *dst, const char **end_ptr); #ifdef __cplusplus |