aboutsummaryrefslogtreecommitdiffstats
path: root/memrchr.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-08-19 13:23:21 +0200
committerMattias Andrée <maandree@kth.se>2018-08-19 13:23:21 +0200
commita405c151df74d4d3b4d06c38feff6458bef375a9 (patch)
tree7a06fe944e440134ab278623b909e73e9f83d3a7 /memrchr.c
parentAdd str[r]n[case]str and str[n][case]cmpnul (diff)
downloadlibsimple-a405c151df74d4d3b4d06c38feff6458bef375a9.tar.gz
libsimple-a405c151df74d4d3b4d06c38feff6458bef375a9.tar.bz2
libsimple-a405c151df74d4d3b4d06c38feff6458bef375a9.tar.xz
Add str[n]caseeq[null] and some tests
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'memrchr.c')
-rw-r--r--memrchr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/memrchr.c b/memrchr.c
index 5028158..1c7f713 100644
--- a/memrchr.c
+++ b/memrchr.c
@@ -19,8 +19,8 @@ libsimple_memrchr(const void *s_, int c, size_t n_)
int
main(void)
{
- assert(!strcmp(libsimple_memrchr("1234512345", '3', sizeof("1234512345") - 1), "345"));
- assert(!strcmp(libsimple_memrchr("1234512345", '5', sizeof("1234512345") - 1), "5"));
+ assert(!strcmpnul(libsimple_memrchr("1234512345", '3', sizeof("1234512345") - 1), "345"));
+ assert(!strcmpnul(libsimple_memrchr("1234512345", '5', sizeof("1234512345") - 1), "5"));
assert(!libsimple_memrchr("1234512345", 'x', sizeof("1234512345") - 1));
return 0;
}