Lines Matching defs:to
9 * By using this file, you agree to the terms and conditions set forth bellow.
28 * distribution the "Copyright Notice" refers to the following language:
31 * 4. The name of JPNIC may not be used to endorse or promote products
139 idn_encodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
142 assert(from != NULL && to != NULL);
151 r = idn_res_encodename(default_conf, actions, from, to, tolen);
155 TRACE(("idn_encodename(): success (to=\"%s\")\n",
156 idn__debug_xstring(to, 50)));
164 idn_decodename(idn_action_t actions, const char *from, char *to, size_t tolen) {
167 assert(from != NULL && to != NULL);
176 r = idn_res_decodename(default_conf, actions, from, to, tolen);
180 TRACE(("idn_decodename(): success (to=\"%s\")\n",
181 idn__debug_xstring(to, 50)));
189 idn_decodename2(idn_action_t actions, const char *from, char *to, size_t tolen,
193 assert(from != NULL && to != NULL);
202 r = idn_res_decodename2(default_conf, actions, from, to, tolen,
207 TRACE(("idn_decodename2(): success (to=\"%s\")\n",
208 idn__debug_xstring(to, 50)));
226 mdn_encodename(int actions, const char *from, char *to, size_t tolen) {
229 assert(from != NULL && to != NULL);
238 return (idn_res_encodename(default_conf, actions, from, to, tolen));
242 mdn_decodename(int actions, const char *from, char *to, size_t tolen) {
245 assert(from != NULL && to != NULL);
254 return (idn_res_decodename(default_conf, actions, from, to, tolen));