X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=5868e7f36509ab20b95360af383b6bbb269dc4a1;hb=b1fc26afebd4d557ff89a44bc21767a8704c3809;hp=2fb3f000e947a179ee77e5f279cfd23acb1974dd;hpb=e5859f9c40964fe349460a3fecc05c3ce2e69d47;p=pdclib diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index 2fb3f00..5868e7f 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* strncpy( char *, const char *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -8,9 +6,6 @@ #include -/* TODO: Debuggung only */ -#include - #ifndef REGTEST char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) @@ -19,19 +14,15 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si while ( ( n > 0 ) && ( *s1++ = *s2++ ) ) { /* Cannot do "n--" in the conditional as size_t is unsigned and we have - to check it again for >0 in the next loop. + to check it again for >0 in the next loop below, so we must not risk + underflow. */ --n; } - /* TODO: This works correctly, but somehow the handling of n is ugly as - hell. - */ - if ( n > 0 ) + /* Checking against 1 as we missed the last --n in the loop above. */ + while ( n-- > 1 ) { - while ( --n ) - { - *s1++ = '\0'; - } + *s1++ = '\0'; } return rc; }