aboutsummaryrefslogtreecommitdiffstats
path: root/test/twbctf.h
blob: c0789ccd96da7839d688a69f16760bd3fcf75818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TWBCTF_H
#define TWBCTF_H

// Libraries //
#include <stdbool.h>

typedef bool (* test_p) (void);

struct test {
    char * desc;
    test_p func;
};

#endif