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
70 char *from, char *to, int tolen)
89 (void)strcpy(to, from);
99 * We have found a region to convert.
108 (void)memcpy(to, from, len);
109 to += len;
121 r = idn_res_encodename(conf, actions, region_start, to, tolen);
131 len = strlen(to);
132 to += len;
141 char *from, char *to, int tolen)
150 * While `*from' points to a character in a string which may be
151 * a domain name, `domain_name' refers to the beginning of the
157 * We ignore chunks matching to the regular expression:
160 * While `*from' points to a character in such a chunk,
161 * `ignored_chunk' refers to the beginning of the chunk.
203 * Copy the chunk to `to'.
208 (void)memcpy(to, ignored_chunk, len);
209 to += len;
216 * to `to'.
221 domain_name, to, tolen);
225 len = strlen(to);
230 (void)memcpy(to, domain_name, len);
234 to += len;
239 * Copy a character `*from' to `to'.
243 *to = *from;
244 to++;
480 * Copy STR to BUF.
493 * Append STR to the end of BUF.