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

17 lines
312 B
C

#ifndef RZ_PUNYCODE_H
#define RZ_PUNYCODE_H
#include <rz_types.h>
#ifdef __cplusplus
extern "C" {
#endif
RZ_API char *rz_punycode_encode(const ut8 *src, int srclen, int *dstlen);
RZ_API char *rz_punycode_decode(const char *src, int srclen, int *dstlen);
#ifdef __cplusplus
}
#endif
#endif // RZ_PUNYCODE_H