1: /* copy.c - copy a string and return pointer to NULL terminator */
   2: 
   3: 
   4: char   *copy (from, to)
   5: register char  *from,
   6:                *to;
   7: {
   8:     while (*to++ = *from++)
   9:     continue;
  10: 
  11:     return (to - 1);
  12: };

Defined functions

copy defined in line 4; used 3 times
Last modified: 1985-04-17
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 677
Valid CSS Valid XHTML 1.0 Strict