aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
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};
2038const char *decode_base64(char **pp_dst, const char *src) FAST_FUNC; 2038char *decode_base64(char *dst, const char **pp_src) FAST_FUNC;
2039const char *decode_base32(char **pp_dst, const char *src) FAST_FUNC; 2039char *decode_base32(char *dst, const char **pp_src) FAST_FUNC;
2040void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC; 2040void read_base64(FILE *src_stream, FILE *dst_stream, int flags) FAST_FUNC;
2041 2041
2042typedef struct md5_ctx_t { 2042typedef struct md5_ctx_t {