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

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

typedef bool (* test_p) (void);

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

uint8_t longest_desc(const struct test *list);

#endif