Commit 0c50af0ca2910d471de11682120ae35cfbcc543d

Thomas de Grivel 2022-11-06T18:32:29

comment

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/test.c b/test/test.c
index 310b74b..102201b 100644
--- a/test/test.c
+++ b/test/test.c
@@ -54,7 +54,7 @@ int test_file_compare (const char *path_a, const char *path_b)
     if (fgets(buf_b, 1024, fp_b) == NULL) {
       return 1;
     }
-    /* TODO: use memcmp */
+    /* TODO: use memcmp for NUL bytes */
     if ((r = strcmp(buf_a, buf_b)))
       return r;
   }