diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index ef4a34f07..e56fff3e8 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -2035,8 +2035,8 @@ enum { | |||
2035 | /* Sign-extends to a value which never matches fgetc result: */ | 2035 | /* Sign-extends to a value which never matches fgetc result: */ |
2036 | BASE64_FLAG_NO_STOP_CHAR = 0x80, | 2036 | BASE64_FLAG_NO_STOP_CHAR = 0x80, |
2037 | }; | 2037 | }; |
2038 | const char *decode_base64(char **pp_dst, const char *src) FAST_FUNC; | 2038 | char *decode_base64(char *dst, const char **pp_src) FAST_FUNC; |
2039 | const char *decode_base32(char **pp_dst, const char *src) FAST_FUNC; | 2039 | char *decode_base32(char *dst, const char **pp_src) FAST_FUNC; |
2040 | void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC; | 2040 | void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC; |
2041 | 2041 | ||
2042 | typedef struct md5_ctx_t { | 2042 | typedef struct md5_ctx_t { |