Lines Matching refs:to
6 * By using this file, you agree to the terms and conditions set forth bellow.
25 * distribution the "Copyright Notice" refers to the following language:
28 * 4. The name of JPNIC may not be used to endorse or promote products
62 mdn_encodename(int actions, const char *from, char *to, size_t tolen);
65 mdn_decodename(int actions, const char *from, char *to, size_t tolen);
67 #define mdn_localtoutf8(from, to, tolen) \
68 mdn_encodename(IDN_LOCALCONV, from, to, len)
69 #define mdn_delimitermap(from, to, tolen) \
70 mdn_encodename(IDN_DELIMMAP, from, to, len)
71 #define mdn_localmap(from, to, tolen) \
72 mdn_encodename(IDN_LOCALMAP, from, to, len)
73 #define mdn_nameprep(from, to, tolen) \
74 mdn_encodename(IDN_NAMEPREP, from, to, len)
75 #define mdn_utf8toidn(from, to, tolen) \
76 mdn_encodename(IDN_IDNCONV, from, to, len)
77 #define mdn_idntoutf8(from, to, tolen) \
78 mdn_decodename(IDN_IDNCONV, from, to, tolen)
79 #define mdn_utf8tolocal(from, to, tolen) \
80 mdn_decodename(IDN_LOCALCONV, from, to, tolen)
82 #define mdn_localtoidn(from, to, tolen) \
83 mdn_encodename(IDN_ENCODE_APP, from, to, tolen)
84 #define mdn_idntolocal(from, to, tolen) \
85 mdn_decodename(IDN_DECODE_APP, from, to, tolen)