aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/strchr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/string/strchr.c')
-rw-r--r--src/string/strchr.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/string/strchr.c b/src/string/strchr.c
index 2b49c2e..e046ea7 100644
--- a/src/string/strchr.c
+++ b/src/string/strchr.c
@@ -104,7 +104,6 @@ char* strchr(const char* string, int c)
else if (!*string++)
return NULL;
}
-/* TODO Ensure that `s = strchr(s, 0)` is faster than `s = s + strlen(s)`. */
/**