add initial configuration and update author information in header files

This commit is contained in:
MarcUs7i 2025-01-10 22:59:38 +01:00
parent 5beea32eee
commit 0178845516
20 changed files with 850 additions and 823 deletions

View file

@ -1,27 +1,27 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Test Driver recursive and iterative algorithms
* Author: S. Schraml
* ----------------------------------------------------------
*/
#include "shortcut.h"
#include "test_sum_of_digits.h"
#include "test_reverse_string.h"
#include "test_count_char.h"
int main(int argc, char *argv[])
{
ADD_TEST(test_sum_of_digits_rec);
ADD_TEST(test_sum_of_digits_itr);
ADD_TEST(test_count_char_rec);
ADD_TEST(test_count_char_itr);
ADD_TEST(test_reverse_string_rec);
ADD_TEST(test_reverse_string_itr);
run_tests();
return 0;
}
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Test Driver recursive and iterative algorithms
* Author: S. Schraml
* ----------------------------------------------------------
*/
#include "shortcut.h"
#include "test_sum_of_digits.h"
#include "test_reverse_string.h"
#include "test_count_char.h"
int main(int argc, char *argv[])
{
ADD_TEST(test_sum_of_digits_rec);
ADD_TEST(test_sum_of_digits_itr);
ADD_TEST(test_count_char_rec);
ADD_TEST(test_count_char_itr);
ADD_TEST(test_reverse_string_rec);
ADD_TEST(test_reverse_string_itr);
run_tests();
return 0;
}