aboutsummaryrefslogtreecommitdiffstats
path: root/rawmemrchr_inv.c
diff options
context:
space:
mode:
Diffstat (limited to 'rawmemrchr_inv.c')
-rw-r--r--rawmemrchr_inv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rawmemrchr_inv.c b/rawmemrchr_inv.c
index 6c6b9db..c6a9b22 100644
--- a/rawmemrchr_inv.c
+++ b/rawmemrchr_inv.c
@@ -4,7 +4,7 @@
void *
-libsimple_rawmemrchr_inv(const void *s_, int c_, size_t n) /* TODO man */
+libsimple_rawmemrchr_inv(const void *s_, int c_, size_t n)
{
char *s = *(char **)(void *)&s_, c = (char)c_;
while (s[--n] == c);