diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index d5580b4b0..8d7beffe7 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1505,6 +1505,12 @@ unsigned get_cpu_count(void) FAST_FUNC; | |||
1505 | extern const char bb_uuenc_tbl_base64[]; | 1505 | extern const char bb_uuenc_tbl_base64[]; |
1506 | extern const char bb_uuenc_tbl_std[]; | 1506 | extern const char bb_uuenc_tbl_std[]; |
1507 | void bb_uuencode(char *store, const void *s, int length, const char *tbl) FAST_FUNC; | 1507 | void bb_uuencode(char *store, const void *s, int length, const char *tbl) FAST_FUNC; |
1508 | enum { | ||
1509 | BASE64_FLAG_UU_STOP = 0x100, | ||
1510 | /* Sign-extends to a value which never matches fgetc result: */ | ||
1511 | BASE64_FLAG_NO_STOP_CHAR = 0x80, | ||
1512 | }; | ||
1513 | void FAST_FUNC read_base64(FILE *src_stream, FILE *dst_stream, int flags); | ||
1508 | 1514 | ||
1509 | typedef struct sha1_ctx_t { | 1515 | typedef struct sha1_ctx_t { |
1510 | uint32_t hash[8]; /* 5, +3 elements for sha256 */ | 1516 | uint32_t hash[8]; /* 5, +3 elements for sha256 */ |