mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-18 23:11:19 +03:00
12 lines
132 B
C
Executable File
12 lines
132 B
C
Executable File
/*
|
|
* strcat.c
|
|
*/
|
|
|
|
#include <string.h>
|
|
|
|
char *strcat(char *dst, const char *src)
|
|
{
|
|
strcpy(strchr(dst, '\0'), src);
|
|
return dst;
|
|
}
|