aboutsummaryrefslogtreecommitdiffstats
path: root/strchrnul_inv.c
diff options
context:
space:
mode:
Diffstat (limited to 'strchrnul_inv.c')
-rw-r--r--strchrnul_inv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strchrnul_inv.c b/strchrnul_inv.c
index c045623..1f79eb3 100644
--- a/strchrnul_inv.c
+++ b/strchrnul_inv.c
@@ -4,7 +4,7 @@
char *
-libsimple_strchrnul_inv(const char *s_, int c_) /* TODO man */
+libsimple_strchrnul_inv(const char *s_, int c_)
{
char *s = *(char **)(void *)&s_, c = (char)c_;
for (; *s && *s == c; s++);