diff options
author | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-03-31 12:46:06 +0100 |
---|---|---|
committer | Paul LeoNerd Evans <leonerd@leonerd.org.uk> | 2011-03-31 12:46:06 +0100 |
commit | 0ea0fb331b62a6239090f8d840fc0821d157a67c (patch) | |
tree | 21e5f5a513d9b7ceef56cd03b5e5a6e243e6fbf0 /t/taplib.h | |
parent | 9d7f0037a83f0a3bc84fea4784e3728dcb5002bf (diff) | |
download | termo-0ea0fb331b62a6239090f8d840fc0821d157a67c.tar.gz termo-0ea0fb331b62a6239090f8d840fc0821d157a67c.tar.xz termo-0ea0fb331b62a6239090f8d840fc0821d157a67c.zip |
is()-like testing for ints and strings
Diffstat (limited to 't/taplib.h')
-rw-r--r-- | t/taplib.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |