mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-12 17:48:33 +00:00
7 lines
212 B
C
7 lines
212 B
C
#ifndef R_PUNYCODE_H
|
|
#define R_PUNYCODE_H
|
|
|
|
R_API char *r_punycode_encode(const char*src, int srclen, int *dstlen);
|
|
R_API char *r_punycode_decode(const char *src, int srclen, int *dstlen);
|
|
#endif // R_PUNYCODE_H
|