diff --git a/libc/fuzzing/string/strcmp_fuzz.cpp b/libc/fuzzing/string/strcmp_fuzz.cpp --- a/libc/fuzzing/string/strcmp_fuzz.cpp +++ b/libc/fuzzing/string/strcmp_fuzz.cpp @@ -15,7 +15,7 @@ // The general structure is to take the value of the first byte, set size1 to // that value, and add the null terminator. size2 will then contain the rest of -// the bytes in data. For example: Inputs: data: [2, 6, 4, 8, 0], size: 5 Split: +// the bytes in data. For example, with inputs ([2, 6, 4, 8, 0], 5): // size1: data[0] = 2 // data1: [2, 6] + '\0' = [2, 6, '\0'] // size2: size - size1 = 3 @@ -81,4 +81,4 @@ __builtin_trap(); return 0; -} +} \ No newline at end of file