From c7677b892a068d169a64fb699b6e41b0a342e390 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Tue, 15 Jan 2002 11:32:30 +0000 Subject: [PATCH] Clearer doc. --- lib/compat.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/compat.c b/lib/compat.c index e84da83c..bf013763 100644 --- a/lib/compat.c +++ b/lib/compat.c @@ -97,8 +97,10 @@ #ifndef HAVE_STRLCPY -/* like strncpy but does not 0 fill the buffer and always null - terminates. bufsize is the size of the destination buffer */ +/* Like strncpy but does not 0 fill the buffer and always null + * terminates. bufsize is the size of the destination buffer. + * + * Returns the index of the terminating byte. */ size_t strlcpy(char *d, const char *s, size_t bufsize) { size_t len = strlen(s); -- 2.34.1