1: /* block copy from from to to, count bytes */
   2: static char *sccsid = "@(#)bcopy.c	7.1	7/8/81";
   3: bcopy(from, to, count)
   4: #ifdef vax
   5:     char *from, *to;
   6:     int count;
   7: {
   8: 
   9:     asm("	movc3	12(ap),*4(ap),*8(ap)");
  10: }
  11: #else
  12:     register char *from, *to;
  13:     register int count;
  14: {
  15:     while ((count--) > 0)   /* mjm */
  16:         *to++ = *from++;
  17: }
  18: #endif

Defined functions

bcopy defined in line 3; used 2 times

Defined variables

count defined in line 13; used 3 times
  • in line 3-6(2), 15
from defined in line 12; used 3 times
  • in line 3-5(2), 16
sccsid defined in line 2; never used
to defined in line 12; used 3 times
  • in line 3-5(2), 16
Last modified: 1981-07-09
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 566
Valid CSS Valid XHTML 1.0 Strict