X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=functions%2Fstring%2Fstrncpy.c;h=a5671b6313bc0ae1e2f1af03fcdd1a94123df1b2;hb=12e17136786afb1775c9dc946cbe41f5e230c24a;hp=31602ec8a9fef4709ce87b2904c821fb6256d2f4;hpb=f385923070a3a823aab25895a9ec330c04c48798;p=pdclib.old diff --git a/functions/string/strncpy.c b/functions/string/strncpy.c index 31602ec..a5671b6 100644 --- a/functions/string/strncpy.c +++ b/functions/string/strncpy.c @@ -8,9 +8,10 @@ Permission is granted to use, modify, and / or redistribute at will. */ -#include <_PDCLIB_aux.h> #include +#ifndef REGTEST + char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) { char * rc = s1; @@ -28,13 +29,14 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si return rc; } +#endif + #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' );