aboutsummaryrefslogtreecommitdiffstats
path: root/strncmove.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2018-11-25 15:14:50 +0100
committerMattias Andrée <maandree@kth.se>2018-11-25 15:14:50 +0100
commit3b0200438e8549389e37ea0f149552ec8040998a (patch)
tree24ca15390b71a18635a3d67ec13f3c617ff56dc7 /strncmove.c
parentInstall man pages (diff)
downloadlibsimple-3b0200438e8549389e37ea0f149552ec8040998a.tar.gz
libsimple-3b0200438e8549389e37ea0f149552ec8040998a.tar.bz2
libsimple-3b0200438e8549389e37ea0f149552ec8040998a.tar.xz
Add man pages
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'strncmove.c')
-rw-r--r--strncmove.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strncmove.c b/strncmove.c
index 25f83bc..1a03d2d 100644
--- a/strncmove.c
+++ b/strncmove.c
@@ -4,7 +4,7 @@
char *
-libsimple_strncmove(char *d, const char *s, int c_, size_t n) /* TODO man */
+libsimple_strncmove(char *d, const char *s, int c_, size_t n)
{
char c = (char)c_, *p, *end = &d[n];
if (d <= s) {