Updated project to use eclipse build tools and make system.
[C-Data-Structures.git] / lib_test.h
blob5e3e030b5ab6791b081988d70a18ad0318438c62
1 #ifndef LIB_TEST_H_
2 #define LIB_TEST_H_
4 /* Unit tests for the data structures. */
6 /* convenient method to exit with message for user */
7 void exit_error(const char*);
9 /* Prints standardized message about the type of test */
10 void test_msg_start(char*);
12 /* Prints results of test message - exits if failed */
13 void test_msg_end(int);
15 int test_ll_new();
17 int test_all();
19 #endif /* LIB_TEST_H_ */