17 lines
191 B
C
17 lines
191 B
C
/*
|
|
* tests.h
|
|
*
|
|
* Created on: 20.10.2017
|
|
* Author: julian
|
|
*/
|
|
|
|
#ifndef TESTS_H_
|
|
#define TESTS_H_
|
|
|
|
void init();
|
|
void fail(const char * err, ...);
|
|
void pass();
|
|
|
|
|
|
#endif /* TESTS_H_ */
|