home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume12 / cnews / part01 / libc / memcpy.fast / src / obvious.c
Encoding:
Text File  |  1987-10-19  |  146 b   |  8 lines

  1. memcpy(to, from, count)        /* no alignment assumptions */
  2. register char *from, *to;
  3. register int count;
  4. {
  5.     while (count-- > 0)
  6.         *to++ = *from++;
  7. }
  8.