1 2 3 4 5 6 7 8 9 10 11 12
#ifndef MUON_TESTS_H #define MUON_TESTS_H #include <stdbool.h> #include <stdint.h> enum test_flag { test_flag_should_fail = 1 << 0, }; bool tests_run(const char *build_dir); #endif