summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strlcat.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* comment fix; strlcat returns strlen(initial dst) + strlen(src).itojun2000-11-241-3/+4
|
* When finding the end of dst, never traverse more than siz bytes. Thismillert1999-06-171-5/+5
| | | | | | keeps us from misbehaving if the user gives us a src string that is not NUL-terminated. This is one of those "should not happen" cases but it is good to play it safe. Pointed out by Casper Dik <casper@holland.sun.com>
* add strlcpy/strlcat, safe and sensible string copy/appendmillert1998-07-011-0/+71