summaryrefslogtreecommitdiff
path: root/src/tc-strchr2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tc-strchr2.c')
-rw-r--r--src/tc-strchr2.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/tc-strchr2.c b/src/tc-strchr2.c
new file mode 100644
index 0000000..6e0eaad
--- /dev/null
+++ b/src/tc-strchr2.c
@@ -0,0 +1,26 @@
+/*
+ * Behavior Correctness Test for HX_strchr2
+ * Copyright Jan Engelhardt, 2013
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the WTF Public License version 2 or
+ * (at your option) any later version.
+ */
+#include <libHX/string.h>
+
+static const char alphabet[] = "abcdefghijklmnopqrstuvwxyz";
+
+int main(void)
+{
+ char *z;
+
+ z = HX_strchr2("qfm!bar", alphabet);
+ if (z == NULL || *z != '!')
+ return EXIT_FAILURE;
+
+ z = HX_strchr2("qfmxbar", alphabet);
+ if (z != NULL)
+ return EXIT_FAILURE;
+
+ return EXIT_SUCCESS;
+}