]> git.mdlowis.com Git - projs/atf.git/commitdiff
minor cleanup of atf.h
authorMike Lowis <mike.lowis@gentex.com>
Fri, 26 Aug 2016 18:32:54 +0000 (14:32 -0400)
committerMike Lowis <mike.lowis@gentex.com>
Fri, 26 Aug 2016 18:32:54 +0000 (14:32 -0400)
atf.h

diff --git a/atf.h b/atf.h
index fccdd09432b13bb627e0af0e0d19afe57fb8c3ab..b0f07c76e6ab5bcff1e9d946906dfa0473365e79 100755 (executable)
--- a/atf.h
+++ b/atf.h
@@ -1,25 +1,19 @@
 /**
-  @file atf.h
-  @brief Aardvark Test Framework main interface file.
-  $Revision$
-  $HeadURL$
+  @brief A minimalistic unit testing framework for C.
+  @author Michael D. Lowis
+  @license BSD 2-clause License
 */
-#ifndef TEST_H
-#define TEST_H
+#ifndef ATF_H
+#define ATF_H
 
 #include <stddef.h>
 #include <stdbool.h>
 
 extern char* Curr_Test;
-
 void atf_init(int argc, char** argv);
-
 void atf_test_start(char* file, unsigned int line, char* name);
-
 bool atf_test_assert(bool success, char* expr_str, char* file, int line);
-
 void atf_test_fail(char* expr, char* file, int line);
-
 int atf_print_results(void);
 
 #define CHECK(expr) \
@@ -128,4 +122,4 @@ int atf_print_results(void) {
 #undef INCLUDE_DEFS
 #endif
 
-#endif /* TEST_H */
+#endif /* ATF_H */