PatchworkOS
Loading...
Searching...
No Matches
strcpy.c
Go to the documentation of this file.
1
#include <
string.h
>
2
3
char
*
strcpy
(
char
*
_RESTRICT
s1,
const
char
*
_RESTRICT
s2)
4
{
5
char
* rc = s1;
6
7
while
((*s1++ = *s2++))
8
{
9
/* EMPTY */
10
}
11
12
return
rc;
13
}
_RESTRICT
#define _RESTRICT
Definition
config.h:17
strcpy
char * strcpy(char *_RESTRICT s1, const char *_RESTRICT s2)
Definition
strcpy.c:3
string.h
src
libstd
functions
string
strcpy.c
Generated by
1.9.8