Lines Matching defs:to
8 * By using this file, you agree to the terms and conditions set forth bellow.
27 * distribution the "Copyright Notice" refers to the following language:
30 * 4. The name of JPNIC may not be used to endorse or promote products
101 /* Convert to surrogate pair */
375 /* nothing to do */ ;
381 idn_ucs4_strcpy(unsigned long *to, const unsigned long *from) {
382 unsigned long *result = to;
385 *to++ = *from++;
386 *to = '\0';
392 idn_ucs4_strcat(unsigned long *to, const unsigned long *from) {
393 unsigned long *result = to;
395 while (*to != '\0')
396 to++;
399 *to++ = *from++;
400 *to = '\0';