XINU
lib
strcpy.c
Go to the documentation of this file.
1
12
int
strcpy
(
char
*tar,
char
*src)
13
{
14
while
((*tar++ = *src++) !=
'\0'
)
15
{
16
;
17
}
18
return
0;
19
}
strcpy
int strcpy(char *tar, char *src)
文字列Aに文字列B(NULL終端を含めて)をコピーする。
Definition:
strcpy.c:12
Generated by
1.8.13