]> pd.if.org Git - pdclib/blob - functions/string/strncat.c
Added test drivers.
[pdclib] / functions / string / strncat.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strncat( char *, const char *, size_t )
6
7    This file is part of the Public Domain C Library (PDCLib).
8    Permission is granted to use, modify, and / or redistribute at will.
9 */
10
11 #include <_PDCLIB_aux.h>
12 #include <string.h>
13
14 char * strncat( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
15 {
16     char * rc = s1;
17     while ( *s1 )
18     {
19         ++s1;
20     }
21     while ( n && ( *s1++ = *s2++ ) )
22     {
23         --n;
24     }
25     if ( n == 0 )
26     {
27         *s1 = '\0';
28     }
29     return rc;
30 }
31
32 #ifdef TEST
33 #include <_PDCLIB_test.h>
34
35 int main()
36 {
37     char s[] = "xx\0xxxxxx";
38     BEGIN_TESTS;
39     TESTCASE( strncat( s, abcde, 10 ) == s );
40     TESTCASE( s[2] == 'a' );
41     TESTCASE( s[6] == 'e' );
42     TESTCASE( s[7] == '\0' );
43     TESTCASE( s[8] == 'x' );
44     s[0] = '\0';
45     TESTCASE( strncat( s, abcdx, 10 ) == s );
46     TESTCASE( s[4] == 'x' );
47     TESTCASE( s[5] == '\0' );
48     TESTCASE( strncat( s, "\0", 10 ) == s );
49     TESTCASE( s[5] == '\0' );
50     TESTCASE( s[6] == 'e' );
51     TESTCASE( strncat( s, abcde, 0 ) == s );
52     TESTCASE( s[5] == '\0' );
53     TESTCASE( s[6] == 'e' );
54     TESTCASE( strncat( s, abcde, 3 ) == s );
55     TESTCASE( s[5] == 'a' );
56     TESTCASE( s[7] == 'c' );
57     TESTCASE( s[8] == '\0' );
58     return TEST_RESULTS;
59 }
60 #endif