aboutsummaryrefslogtreecommitdiffstats
path: root/memdup.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 /memdup.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 'memdup.c')
-rw-r--r--memdup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/memdup.c b/memdup.c
index ea85dc5..9c681e2 100644
--- a/memdup.c
+++ b/memdup.c
@@ -23,9 +23,9 @@ main(void)
void *p = libsimple_memdup(s, 5);
assert(p);
assert(p != s);
- assert(!strcmp(p, s));
+ assert(!strcmpnul(p, s));
memset(p, 0, 5);
- assert(!strcmp(s, "test"));
+ assert(!strcmpnul(s, "test"));
free(p);
return 0;
}