15 lines
282 B
C
15 lines
282 B
C
#ifndef R_PUNYCODE_H
|
|
#define R_PUNYCODE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
R_API char *r_punycode_encode(const ut8 *src, int srclen, int *dstlen);
|
|
R_API char *r_punycode_decode(const char *src, int srclen, int *dstlen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // R_PUNYCODE_H
|