]> git.ozlabs.org Git - ccan/blobdiff - ccan/tal/str/test/run-strndup.c
bitmap: Avoid shadowing type name with parameter name
[ccan] / ccan / tal / str / test / run-strndup.c
index d967354842c2ef083543061612e5143ed7701c8a..94689d8c6d7aa6fd52496a192a217a2a32d593c1 100644 (file)
@@ -5,16 +5,17 @@
 #include <ccan/tap/tap.h>
 #include "helper.h"
 
-int main(int argc, char *argv[])
+int main(void)
 {
        char *str, *copy;
 
-       plan_tests(1);
+       plan_tests(2);
        str = malloc(5);
        memcpy(str, "hello", 5);
        /* We should be fine to strndup src without nul terminator. */
        copy = tal_strndup(NULL, str, 5);
        ok1(!strcmp(copy, "hello"));
+       ok1(tal_count(copy) == strlen(copy) + 1);
        tal_free(copy);
        free(str);