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