mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
25 lines
485 B
C
25 lines
485 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "character_test.h"
|
|
#include "convert_test.h"
|
|
#include "dictionary_test.h"
|
|
#include "linked_list_test.h"
|
|
#include "mathematics_test.h"
|
|
#include "queue_test.h"
|
|
#include "stack_test.h"
|
|
#include "string_test.h"
|
|
|
|
int main() {
|
|
character_test();
|
|
convert_test();
|
|
dictionary_test();
|
|
linked_list_test();
|
|
mathematics_test();
|
|
queue_test();
|
|
stack_test();
|
|
string_test();
|
|
printf("Success: Tests passed!\n");
|
|
return EXIT_SUCCESS;
|
|
}
|