mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-13 20:20:36 +00:00
7 lines
115 B
C
7 lines
115 B
C
#include <string.h>
|
|
|
|
char *stpcpy(char *dest,const char *source)
|
|
{
|
|
while((*dest++=*source++)); return(dest-1);
|
|
}
|