Changeset 609 for branches/GNU/src/binutils/libiberty/bcopy.c
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/libiberty/bcopy.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* bcopy -- copy memory regions of arbitary length 2 2 3 NAME 4 bcopy -- copy memory regions of arbitrary length 3 @deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length}) 5 4 6 SYNOPSIS 7 void bcopy (char *in, char *out, int length) 5 Copies @var{length} bytes from memory region @var{in} to region 6 @var{out}. The use of @code{bcopy} is deprecated in new programs. 8 7 9 DESCRIPTION 10 Copy LENGTH bytes from memory region pointed to by IN to memory 11 region pointed to by OUT. 12 13 BUGS 14 Significant speed improvements can be made in some cases by 15 implementing copies of multiple bytes simultaneously, or unrolling 16 the copy loop. 8 @end deftypefn 17 9 18 10 */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.