diff options
| author | Miguel <m.i@gmx.at> | 2018-10-01 23:22:03 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-10-01 23:22:03 +0200 |
| commit | a455cd5af26bf8731e7c981a9421b16ab34dae6f (patch) | |
| tree | 140b184bf306cef258ba6e7965a78b3eecb598b9 /lib | |
| parent | b518f39803eaaf0b25b95baf951b12ef4d5a727e (diff) | |
fukkin scheduler
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/string/string.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/string/string.h b/lib/string/string.h index e5e4b94..acd03ab 100644 --- a/lib/string/string.h +++ b/lib/string/string.h @@ -5,5 +5,6 @@ void* memcpy(void* restrict dstptr, const void* restrict srcptr, int size); int strcmp(char *str1, char *str2); int strcmp_l(char *str1, char *str2, int length); int strlen(const char* string); +static char *strcpy (char* dst, const char *src ){return memcpy(dst,src,strlen(src));} #endif |
