diff options
Diffstat (limited to 'include/test/lib/dir.h')
-rw-r--r-- | include/test/lib/dir.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/test/lib/dir.h b/include/test/lib/dir.h index 64482df..6d46267 100644 --- a/include/test/lib/dir.h +++ b/include/test/lib/dir.h @@ -3,14 +3,15 @@ #include <test/__meta__.h> #ifndef TEST_RESULT -#define TEST_RESULT(subtest,result,n,n_success) _TEST_RESULT("LIB/DIR",subtest,result,n,n_success) +#define TEST_RESULT(subtest, result, n, n_success) \ + _TEST_RESULT("LIB/DIR", subtest, result, n, n_success) #endif #include <lib/dir.h> -bool_t test_is_directory(char* dirname, bool_t result); -bool_t test_full_path(char* dirname, char* file, char* result); -bool_t test_is_tif_ext(char* file_name, bool_t result); +bool_t test_is_directory(char *dirname, bool_t result); +bool_t test_full_path(char *dirname, char *file, char *result); +bool_t test_is_tif_ext(char *file_name, bool_t result); // Meta test function bool_t TEST_lib_dir(); |