aboutsummaryrefslogtreecommitdiffstats
path: root/strchr_inv.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-11-25 11:28:48 +0100
committerMattias Andrée <maandree@kth.se>2018-11-25 11:28:48 +0100
commitec0cbe2001ab7d07b50a7ec016bd343b6ba78b80 (patch)
tree341ced459bfddc28797533c178f7a259ba10de25 /strchr_inv.c
parentAdd man pages (diff)
downloadlibsimple-ec0cbe2001ab7d07b50a7ec016bd343b6ba78b80.tar.gz
libsimple-ec0cbe2001ab7d07b50a7ec016bd343b6ba78b80.tar.bz2
libsimple-ec0cbe2001ab7d07b50a7ec016bd343b6ba78b80.tar.xz
Add man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'strchr_inv.c')
-rw-r--r--strchr_inv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strchr_inv.c b/strchr_inv.c
index d9fecf6..4c1e242 100644
--- a/strchr_inv.c
+++ b/strchr_inv.c
@@ -4,7 +4,7 @@
char *
-libsimple_strchr_inv(const char *s_, int c_) /* TODO man */
+libsimple_strchr_inv(const char *s_, int c_)
{
char *s = *(char **)(void *)&s_, c = (char)c_;
for (; *s && *s == c; s++);