Rizin
unix-like reverse engineering framework and cli tools
rz_punycode.h
Go to the documentation of this file.
1 #ifndef RZ_PUNYCODE_H
2 #define RZ_PUNYCODE_H
3 
4 #include <rz_types.h>
5 
6 #ifdef __cplusplus
7 extern "C" {
8 #endif
9 
10 RZ_API char *rz_punycode_encode(const ut8 *src, int srclen, int *dstlen);
11 RZ_API char *rz_punycode_decode(const char *src, int srclen, int *dstlen);
12 
13 #ifdef __cplusplus
14 }
15 #endif
16 
17 #endif // RZ_PUNYCODE_H
lzma_index * src
Definition: index.h:567
#define RZ_API
uint8_t ut8
Definition: lh5801.h:11
RZ_API char * rz_punycode_encode(const ut8 *src, int srclen, int *dstlen)
Definition: punycode.c:176
RZ_API char * rz_punycode_decode(const char *src, int srclen, int *dstlen)
Definition: punycode.c:255