home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / REND.LZH / REND / BCOPY.C < prev    next >
Text File  |  1990-04-12  |  89b  |  7 lines

  1. int    bcopy( p1, p2, n )
  2. char    *p1, *p2 ;
  3. int    n ;
  4. {
  5.     return( memcpy( p1, p2, n ) );
  6. }
  7.