From 0ea0fb331b62a6239090f8d840fc0821d157a67c Mon Sep 17 00:00:00 2001 From: Paul LeoNerd Evans Date: Thu, 31 Mar 2011 12:46:06 +0100 Subject: is()-like testing for ints and strings --- t/taplib.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 't/taplib.h') diff --git a/t/taplib.h b/t/taplib.h index 16e41b6..b675329 100644 --- a/t/taplib.h +++ b/t/taplib.h @@ -1,3 +1,5 @@ void plan_tests(int n); void ok(int cmp, char *name); +void is_int(int got, int expect, char *name); +void is_str(char *got, char *expect, char *name); int exit_status(void); -- cgit v1.2.3-54-g00ecf