X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=91f97da3d28f39e9d15a8d6e7380b9c38ee97120;hb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;hp=e1f34a7f8558b83734b0ce8cb967c809120de74e;hpb=b533867fc9062c9f88f94a1de99ef78c6b7e91a1;p=pdclib diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index e1f34a7..91f97da 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -1,7 +1,5 @@ /* $Id$ */ -/* Release $Name$ */ - /* strncpy( char *, const char *, size_t ) This file is part of the Public Domain C Library (PDCLib). @@ -34,10 +32,9 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si #ifdef TEST #include <_PDCLIB_test.h> -int main() +int main( void ) { char s[] = "xxxxxxx"; - BEGIN_TESTS; TESTCASE( strncpy( s, "", 1 ) == s ); TESTCASE( s[0] == '\0' ); TESTCASE( s[1] == 'x' );