mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-05 08:51:48 +00:00
11 lines
152 B
C
11 lines
152 B
C
char *
|
|
__stpcpy (dest, src)
|
|
char *dest;
|
|
const char *src;
|
|
{
|
|
while ((*dest++ = *src++) != '\0')
|
|
/* Do nothing. */ ;
|
|
return dest - 1;
|
|
}
|
|
|