test_fixture
struct test_fixture;
void free_test_fixture(struct test_fixture *fixture)
struct test_fixture *next;
struct test_fixture *read_fixtures_from_file(const char *filename)
struct test_fixture *head = NULL;
struct test_fixture *prev = NULL;
struct test_fixture *fixture = NULL;
fixture = malloc(sizeof(struct test_fixture));
print_test_fixture(FILE *out, struct test_fixture *fixture, uint8_t *result);
read_test_fixture(char *line, int lineno, struct test_fixture *fixture);
static struct test_fixture *read_fixtures_from_file(const char *filename);
struct test_fixture *fixtures =
static void free_test_fixture(struct test_fixture *fixture);
for (struct test_fixture *fixture = fixtures; fixture;
struct test_fixture *next = fixtures->next;
FILE *out, struct test_fixture *fixture, uint8_t *result)
int read_test_fixture(char *line, int lineno, struct test_fixture *fixture)