diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-09-25 20:14:25 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2018-09-25 20:14:25 +0200 |
commit | dfec09c436a8a328fc97007cf2dc3cd5476cc748 (patch) | |
tree | 4fe3e1fd992eff1fdf9c9464ee654b9a0edf3212 /sys/include/libc.h | |
parent | dbfb76673539e5b59dac437c6b2a2159c896731c (diff) |
libc: add utf2idn() and idn2utf() functions to deal with internationalized domain names
Diffstat (limited to 'sys/include/libc.h')
-rw-r--r-- | sys/include/libc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/include/libc.h b/sys/include/libc.h index 98226dc05..80e38787a 100644 --- a/sys/include/libc.h +++ b/sys/include/libc.h @@ -527,6 +527,9 @@ struct NetConnInfo extern NetConnInfo* getnetconninfo(char*, int); extern void freenetconninfo(NetConnInfo*); +extern char* idn2utf(char*, char*, int); +extern char* utf2idn(char*, char*, int); + /* * system calls * |