diff options
Diffstat (limited to 'strrchr_inv.c')
-rw-r--r-- | strrchr_inv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strrchr_inv.c b/strrchr_inv.c index 3fdd1dc..37b7e79 100644 --- a/strrchr_inv.c +++ b/strrchr_inv.c @@ -4,7 +4,7 @@ char * -libsimple_strrchr_inv(const char *s_, int c_) /* TODO man */ +libsimple_strrchr_inv(const char *s_, int c_) { char *s = *(char **)(void *)&s_, c = (char)c_, *r = NULL; for (; *s; s++) |