diff options
Diffstat (limited to 'strrcasechr_inv.c')
-rw-r--r-- | strrcasechr_inv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strrcasechr_inv.c b/strrcasechr_inv.c index 66a3837..5572a38 100644 --- a/strrcasechr_inv.c +++ b/strrcasechr_inv.c @@ -4,7 +4,7 @@ char * -libsimple_strrcasechr_inv(const char *s_, int c) /* TODO man */ +libsimple_strrcasechr_inv(const char *s_, int c) { char *s = *(char **)(void *)&s_, lc = (char)tolower(c), uc = (char)toupper(c), *r = NULL; if (lc != uc) { |