]> pd.if.org Git - pdclib/blob - functions/string/strncpy.c
Added dummy test drivers to each *.c file, and target 'test' to Makefile.
[pdclib] / functions / string / strncpy.c
1 /* $Id$ */
2
3 /* Release $Name$ */
4
5 /* strncpy( 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 * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
15 {
16     char * rc = s1;
17     while ( ( n > 0 ) && ( *s1++ = *s2++ ) )
18     {
19         /* Cannot do "n--" in the conditional as size_t is unsigned and we have
20            to check it again for >0 in the next loop.
21         */
22         --n;
23     }
24     while ( n-- )
25     {
26         *s1++ = '\0';
27     }
28     return rc;
29 }
30
31 #warning Test driver missing.
32
33 #ifdef TEST
34 int main()
35 {
36     return 0;
37 }
38 #endif