aboutsummaryrefslogtreecommitdiffstats
path: root/strend.c
diff options
context:
space:
mode:
Diffstat (limited to 'strend.c')
-rw-r--r--strend.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/strend.c b/strend.c
new file mode 100644
index 0000000..ff5fa34
--- /dev/null
+++ b/strend.c
@@ -0,0 +1,19 @@
+/* See LICENSE file for copyright and license details. */
+#include "common.h"
+#ifndef TEST
+
+
+extern inline char *libsimple_strend(const char *);
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ assert(strcmpnul(libsimple_strend("abc\0xyz"), "xyz"));
+ return 0;
+}
+
+#endif