Searched defs:Copy (Results 1 - 2 of 2) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/ |
H A D | Copy.pm | 1 # File/Copy.pm. Written in 1994 by Aaron Sherman <ajs@ajs.com>. This 8 package File::Copy; 23 # the File/Copy.pm module of the File-Tools-2.0 package. However, that 267 File::Copy - Copy files or filehandles 271 use File::Copy; 273 copy("file1","file2") or die "Copy failed: $!"; 274 copy("Copy.pm",\*STDOUT); 278 use File::Copy cp; 285 The File::Copy modul [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | handy.h | 560 the type. Can do overlapping moves. See also C<Copy>. 562 =for apidoc Am|void|Copy|void* src|void* dest|int nitems|type 605 #define Copy(s,d,n,t) (MEM_WRAP_CHECK(n,t), (void)memcpy((char*)(d),(char*)(s), (n) * sizeof(t))) macro 627 #define Copy(s,d,n,t) (void)memcpy((char*)(d),(char*)(s), (n) * sizeof(t)) macro 641 #define Copy(s,d,n,t) macro 651 #define StructCopy(s,d,t) Copy(s,d,1,t) 663 # define Perl_va_copy(s, d) Copy(s, d, 1, va_list)
|
Completed in 34 milliseconds