Lines Matching refs:to
4 * The contents of this file are subject to the terms of the
32 void cat(char *to, char *from1, char *from2)
35 cat() concatenates "from1" and "from2" to "to"
36 to -> destination string
42 cat(to, from1, from2)
43 register char *to, *from1, *from2;
45 for (; *from1;) *to++ = *from1++;
46 for (; *from2;) *to++ = *from2++;
47 *to = '\0';