]> pd.if.org Git - pdclib/blob - functions/string/strncat.c
Merged PDPCLIB and Therx code.
[pdclib] / functions / string / strncat.c
1 // ----------------------------------------------------------------------------
2 // $Id$
3 // ----------------------------------------------------------------------------
4 // Public Domain C Library - http://pdclib.sourceforge.net
5 // This code is Public Domain. Use, modify, and redistribute at will.
6 // ----------------------------------------------------------------------------
7
8 char * strncat( char * restrict s1, const char * restrict s2, size_t n ) { /* TODO */ };
9
10 /* PDPC code - unreviewed
11 {
12     char *p = s1;
13     size_t x = 0;
14     
15     while (*p != '\0') p++;
16     while ((*s2 != '\0') && (x < n))
17     {
18         *p = *s2;
19         p++;
20         s2++;
21         x++;
22     }
23     *p = '\0';
24     return (s1);
25 }
26 */