1 void plan_tests(int n);
2 void ok(int cmp, char *name);
3 void pass(char *name);
4 void fail(char *name);
5 void is_int(int got, int expect, char *name);
6 void is_str(const char *got, const char *expect, char *name);
7 int exit_status(void);
8