summaryrefslogtreecommitdiff
path: root/test.h
diff options
context:
space:
mode:
Diffstat (limited to 'test.h')
-rw-r--r--test.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/test.h b/test.h
index 6eedc6f..7fa1efe 100644
--- a/test.h
+++ b/test.h
@@ -11,5 +11,9 @@ void test_bool_imp(const char *, int, int);
#define test_false(expression) test_bool_imp(#expression, expression, 0)
#define test_true(expression) test_bool_imp(#expression, expression, 1)
+void test_string_imp(const char*, const char*, const char*);
+#define test_string(expression, string) test_string_imp(#expression, expression, string)
+
void test_assert(void);
void test_ctype(void);
+void test_locale(void);