home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / GNU-COMM / GCL-1.0 / GCL-1 / gcl-1.0 / c / bcopy.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-10-09  |  82 b   |  10 lines

  1. void
  2. bcopy(s1,s2,n)
  3. char *s1,*s2;
  4. int n;
  5. { while (n-- > 0)
  6.     *s2++ = *s1++;
  7. }
  8.  
  9.  
  10.