16 lines
453 B
C
16 lines
453 B
C
/*----------------------------------------------------------
|
|
* HTBLA-Leonding
|
|
* ---------------------------------------------------------
|
|
* Title: Unit tests for 'Reverse String'
|
|
* Author: S. Schraml
|
|
* ----------------------------------------------------------
|
|
*/
|
|
#ifndef ___TEST_REVERSE_STRING_H
|
|
#define ___TEST_REVERSE_STRING_H
|
|
|
|
#include "shortcut.h"
|
|
|
|
TEST(test_reverse_string_rec);
|
|
TEST(test_reverse_string_itr);
|
|
|
|
#endif
|