11-recursion-algos/test_count_char.h

16 lines
433 B
C

/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Unit tests for 'Count Char'
* Author: S. Schraml
* ----------------------------------------------------------
*/
#ifndef ___TEST_COUNT_CHAR_H
#define ___TEST_COUNT_CHAR_H
#include "shortcut.h"
TEST(test_count_char_rec);
TEST(test_count_char_itr);
#endif