ack/lang/cem/libcc/gen/strncpy.c

15 lines
235 B
C
Raw Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1987-01-27 15:57:55 +00:00
char
*strncpy(s1, s2, n)
register char *s1, *s2;
int n;
{
/* Copy s2 to s1, but at most n characters. */
char *original = s1;
while (*s2 && n-- > 0) *s1++ = *s2++;
while (n-- > 0) *s1++ = '\0';
return(original);
}