home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Extra Super CD 1998 January
/
PCPLUS131.iso
/
DJGPP
/
V2
/
DJLSR201.ZIP
/
src
/
libc
/
ansi
/
string
/
strcpy.txh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-07-10
|
333 b
|
25 lines
@node strcpy, string
@subheading Syntax
@example
#include <string.h>
char *strcpy(char *s1, const char *s2);
@end example
@subheading Description
This function copies @var{s2} into @var{s1}.
@subheading Return Value
@var{s1}
@subheading Example
@example
char buf[100];
strcpy(buf, arg);
@end example