]> pd.if.org Git - ctap/blobdiff - ctap.h
fix uninitialized pointer
[ctap] / ctap.h
diff --git a/ctap.h b/ctap.h
index 43d8087e792720c8bba2df86958132709fd8d06e..17135225b87933dd84526029a80daad2faa594db 100644 (file)
--- a/ctap.h
+++ b/ctap.h
@@ -3,6 +3,8 @@
 
 #include <stdarg.h>
 
+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