blob: a1e67ba155d4bb4c2f81fc26ac2c7dbd71c1565e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef TESTS_LIB_H
#define TESTS_LIB_H
#include "../src/config.h"
void
test_start(const char *const name);
void
testing(const char *const message);
void
test_ok(void);
#endif
|