Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/bcopy.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* bcopy -- copy memory regions of arbitary length
    22
    3 NAME
    4         bcopy -- copy memory regions of arbitrary length
     3@deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
    54
    6 SYNOPSIS
    7         void bcopy (char *in, char *out, int length)
     5Copies @var{length} bytes from memory region @var{in} to region
     6@var{out}.  The use of @code{bcopy} is deprecated in new programs.
    87
    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
    179
    1810*/
Note: See TracChangeset for help on using the changeset viewer.