summaryrefslogtreecommitdiff
path: root/t/taplib.h
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2012-03-14 09:23:18 +0000
committerPaul "LeoNerd" Evans <leonerd@leonerd.org.uk>2012-03-14 09:23:18 +0000
commita3bbc793ce35fdd960dd040ede2e65cb4319a1af (patch)
treef281b2127174b3684be414c1981e1762940c476e /t/taplib.h
parent9c3867cd082545f07e812700356808cff5073b2c (diff)
Implemented new is_str_escape() unit-test primitive, use it for escape sequence tests
Diffstat (limited to 't/taplib.h')
-rw-r--r--t/taplib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/taplib.h b/t/taplib.h
index 45ce898..23c6dca 100644
--- a/t/taplib.h
+++ b/t/taplib.h
@@ -2,4 +2,5 @@ void plan_tests(int n);
void ok(int cmp, char *name);
void is_int(int got, int expect, char *name);
void is_str(const char *got, const char *expect, char *name);
+void is_str_escape(const char *got, const char *expect, char *name);
int exit_status(void);