aboutsummaryrefslogtreecommitdiff
path: root/libc/test/run-memops-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/run-memops-test.c')
-rw-r--r--libc/test/run-memops-test.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/libc/test/run-memops-test.c b/libc/test/run-memops-test.c
index 41c624f..e6fc7d0 100644
--- a/libc/test/run-memops-test.c
+++ b/libc/test/run-memops-test.c
@@ -47,6 +47,8 @@ int test_memset(char* buf, int c, size_t s);
int test_memchr(const void *ptr, int c, size_t n, void* expected);
int test_memcmp(const void *ptr1, const void *ptr2, size_t n, int expected);
int test_strcmp(const void *ptr1, const void *ptr2, int expected);
+int test_strchr(const char *s, int c, char *expected);
+int test_strcasecmp(const char *s1, const char *s2, int expected);
int test_memset(char* buf, int c, size_t s)
{
@@ -75,3 +77,13 @@ int test_strcmp(const void *ptr1, const void *ptr2, int expected)
{
return(expected == strcmp(ptr1, ptr2));
}
+
+int test_strchr(const char *s, int c, char *expected)
+{
+ return(expected == strchr(s, c));
+}
+
+int test_strcasecmp(const char *s1, const char *s2, int expected)
+{
+ return(expected == strcasecmp(s1, s2));
+}