home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixtools
/
util
/
c
/
strpcpy
< prev
next >
Wrap
Text File
|
1992-07-21
|
279b
|
16 lines
/* > C.Strpcpy - copy a string, returning a pointer to the end */
#include <ctype.h>
#include "utils.h"
char *strpcpy (char *s, const char *t)
{
while ( ( *s = *t ) != '\0' )
{
++s;
++t;
}
return (s);
}