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