summaryrefslogtreecommitdiff
path: root/src/lib/libc/string/strlcat.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Roll back uintptr_t cast changes after discussions with tedu, otto anddtucker2016-10-161-9/+3
* Cast pointers to uintptr_t to avoid potential signedness errors.dtucker2016-10-141-3/+9
* Add framework for resolving (pun intended) libc namespace issues, usingguenther2015-08-311-1/+2
* Update comment to match code; Caspar Schutijserlibressl-v2.1.4millert2015-03-021-2/+2
* Make strlcpy/strlcat slightly easier to read.millert2015-01-151-23/+23
* zap remaining rcsid.espie2005-08-081-5/+1
* ansify + deregister. no binary change on i386. ok deraadt@ pat@ moritz@otto2005-03-301-5/+5
* Sync with share/misc/license.template and add missing DARPA creditmillert2003-06-171-9/+9
* Change copyright to a less restrictive ISC-style license to encouragemillert2003-04-121-23/+12
* ANSI function headersmillert2003-03-141-6/+3
* type of function on seperate linederaadt2001-05-131-3/+4
* Back out last change, it is intended behavior and update the blockmillert2001-05-071-5/+5
* strlcat() should return strlen(dst) + strlen(src) when size parametermillert2001-05-071-3/+3
* Sync function comment with man page; fanf@covalent.netmillert2001-01-131-3/+3
* Reverse the order of two loop invariant to make 'strlcat(0, "foo", 0)'millert2001-01-121-3/+3
* 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
* add strlcpy/strlcat, safe and sensible string copy/appendmillert1998-07-011-0/+71