1: /* copyip.c - copy a string array and return pointer to end */
   2: 
   3: 
   4: char  **copyip (p, q)
   5: register char  **p,
   6:            **q;
   7: {
   8:     while (*p)
   9:     *q++ = *p++;
  10:     *q = 0;
  11: 
  12:     return q;
  13: }

Defined functions

copyip defined in line 4; never used
Last modified: 1985-10-29
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 509
Valid CSS Valid XHTML 1.0 Strict