X-Git-Url: https://pd.if.org/git/?p=ctap;a=blobdiff_plain;f=ctap.h;h=17135225b87933dd84526029a80daad2faa594db;hp=43d8087e792720c8bba2df86958132709fd8d06e;hb=HEAD;hpb=31dfcc882434a7f85258d98d5a9d80cb4c83ab65 diff --git a/ctap.h b/ctap.h index 43d8087..1713522 100644 --- a/ctap.h +++ b/ctap.h @@ -3,6 +3,8 @@ #include +void begin_todo(void); +void end_todo(void); void plan(int tests); void plan_lazy(void); void skip_all(const char *why, ...); @@ -19,5 +21,8 @@ void is_hex(unsigned long wanted, unsigned long seen, const char *fmt, ...); void is_int(long wanted, long seen, const char *fmt, ...); void is_double(double wanted, double seen, double eps, const char *fmt, ...); void is_string(const char *wanted, const char *seen, const char *fmt, ...); +void is_compare(void *have, void *want, int (*cmp)(void *,void *), + const char *fmt, ... + ); #endif