summaryrefslogtreecommitdiff
path: root/lib/libc/string/strlcat.c
AgeCommit message (Expand)Author
2019-01-25I am retiring my old email address; replace it with my OpenBSD one.Todd C. Miller
2016-10-16Roll back uintptr_t cast changes after discussions with tedu, otto andDarren Tucker
2016-10-14Cast pointers to uintptr_t to avoid potential signedness errors.Darren Tucker
2015-08-31Add framework for resolving (pun intended) libc namespace issues, usingPhilip Guenther
2015-03-02Update comment to match code; Caspar SchutijserTodd C. Miller
2015-01-15Make strlcpy/strlcat slightly easier to read.Todd C. Miller
2005-08-08zap remaining rcsid.Marc Espie
2005-03-30ansify + deregister. no binary change on i386. ok deraadt@ pat@ moritz@Otto Moerbeek
2003-06-17Sync with share/misc/license.template and add missing DARPA creditTodd C. Miller
2003-04-12Change copyright to a less restrictive ISC-style license to encourageTodd C. Miller
2003-03-14ANSI function headersTodd C. Miller
2001-05-13type of function on seperate lineTheo de Raadt
2001-05-07Back out last change, it is intended behavior and update the blockTodd C. Miller
2001-05-07strlcat() should return strlen(dst) + strlen(src) when size parameterTodd C. Miller
2001-01-13Sync function comment with man page; fanf@covalent.netTodd C. Miller
2001-01-12Reverse the order of two loop invariant to make 'strlcat(0, "foo", 0)'Todd C. Miller
2000-11-24comment fix; strlcat returns strlen(initial dst) + strlen(src).Jun-ichiro itojun Hagino
1999-06-17When finding the end of dst, never traverse more than siz bytes. ThisTodd C. Miller
1998-07-01add strlcpy/strlcat, safe and sensible string copy/appendTodd C. Miller