X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=a5671b6313bc0ae1e2f1af03fcdd1a94123df1b2;hp=e1f34a7f8558b83734b0ce8cb967c809120de74e;hb=12e17136786afb1775c9dc946cbe41f5e230c24a;hpb=9489b93733c00be5a94e2ee5b349457c78184a1a diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index e1f34a7..a5671b6 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -34,10 +34,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' );