PatchworkOS
Loading...
Searching...
No Matches
strcpy.c
Go to the documentation of this file.
1#include <string.h>
2
3char* 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}
#define _RESTRICT
Definition config.h:17
char * strcpy(char *_RESTRICT s1, const char *_RESTRICT s2)
Definition strcpy.c:3