1
0
mirror of https://github.com/fumiama/base16384.git synced 2026-06-09 20:50:26 +08:00

fix(debian): some symbols or patterns disappeared

This commit is contained in:
源文雨
2024-04-05 17:56:35 +09:00
parent 3ca3c3c459
commit 688a4ecef2
3 changed files with 43 additions and 7 deletions

View File

@@ -244,9 +244,7 @@ base16384_err_t base16384_decode_fp_detailed(base16384_typed_flag_params(FILE*))
base16384_err_t base16384_decode_fd_detailed(base16384_typed_flag_params(int));
#define BASE16384_WRAP_DECL(method, name, type) \
static inline base16384_err_t base16384_##method##_##name(base16384_typed_params(type)) { \
return base16384_##method##_##name##_detailed(input, output, encbuf, decbuf, 0); \
}
base16384_err_t base16384_##method##_##name(base16384_typed_params(type));
BASE16384_WRAP_DECL(encode, file, const char*);
BASE16384_WRAP_DECL(encode, fp, FILE*);