rizin/librz/include/rz_util/rz_base91.h
Dean e7f85fd409
Clean up headers (#2719)
* Remove duplicate declarations
* Remove undefined functions
2022-06-22 07:30:50 +08:00

17 lines
289 B
C

#ifndef RZ_BASE91_H
#define RZ_BASE91_H
#include <rz_types.h>
#ifdef __cplusplus
extern "C" {
#endif
RZ_API int rz_base91_encode(char *bout, const ut8 *bin, int len);
RZ_API int rz_base91_decode(ut8 *bout, const char *bin, int len);
#ifdef __cplusplus
}
#endif
#endif // RZ_BASE91_H