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
129 * convert local encoding to DNS encoding
133 idnConvReq(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen)
144 strcpy(to, from);
148 r = idn_res_encodename(ctx, IDN_ENCODE_APP, from, to, tolen);
160 * convert DNS encoding to local encoding
164 idnConvRsp(idn_resconf_t ctx, const char FAR *from, char FAR *to, size_t tolen)
172 strcpy(to, from);
175 from, to, tolen) == idn_success) {