16 lines
417 B
C
16 lines
417 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
|