]> pd.if.org Git - pdclib/blob - functions/string/strncpy.c
Added some of <string.h>.
[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 <string.h>
12
13 char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n )
14 {
15     char * rc = s1;
16     while ( ( n > 0 ) && ( *s1++ = *s2++ ) )
17     {
18         /* Cannot do "n--" in the conditional as size_t is unsigned and we have
19            to check it again for >0 in the next loop.
20         */
21         --n;
22     }
23     while ( n-- )
24     {
25         *s1++ = '\0';
26     }
27     return rc;
28 }