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