]> pd.if.org Git - pdclib/blobdiff - functions/string/strncpy.c
Whitespace cleanups.
[pdclib] / functions / string / strncpy.c
index 2c58d538fbb0be3fc463af51e82404d0d6cef1a0..da1397a93caaf2a7a1b6b3ebf5499f941f1f8236 100644 (file)
@@ -30,6 +30,7 @@ char * strncpy( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, si
 #endif
 
 #ifdef TEST
+
 #include "_PDCLIB_test.h"
 
 int main( void )
@@ -51,4 +52,5 @@ int main( void )
     TESTCASE( s[3] == 'd' );
     return TEST_RESULTS;
 }
+
 #endif