summaryrefslogtreecommitdiff
path: root/lib/libc/string
AgeCommit message (Expand)Author
2012-08-02remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets.Okan Demirmen
2012-07-11fix an off-by-one error where the return value would point to theChristian Weisgerber
2012-04-26Add strnlen() to libkern.Matthew Dempsky
2012-04-03tweak previous;Jason McIntyre
2012-04-02simplify the strlcpy/strlcat manual page substantially. do lessTheo de Raadt
2012-03-26Bump standards years, as we conform to the new versions tooPhilip Guenthe
2012-03-26strsignal() was standardized in POSIX-2008Philip Guenthe
2012-01-17fix SEE ALSO;Jason McIntyre
2012-01-17Add stpcpy() and stpncpy(), pointless crap that made it into POSIX.Philip Guenthe
2012-01-14grammar;Jason McIntyre
2012-01-14this is sparta^WPOSIX 2008Marc Espie
2011-12-08strdup and strndup both use malloc. Make this fact explicit.lum
2011-07-25tweak previous;Jason McIntyre
2011-07-25update HISTORY and SEE ALSO for all of string(3), together with variousIngo Schwarze
2011-07-24Sync wcslcpy and wcslcat with strlcpy and strlcat. OK deraadt@Todd C. Miller
2011-07-09Minor function name tweaks.Nicholas Marriott
2011-07-09Instead of documenting all the wide string functions in wmemchr(3), addNicholas Marriott
2011-07-08After a certain amount of fighting with the mbstowcs API, remove L fromNicholas Marriott
2011-07-05Fix some awful code in the example, pointed out by millert@.Nicholas Marriott
2011-07-04Add wcsdup(), from NetBSD.Nicholas Marriott
2011-06-01fix wcscasecmp() parameters; <wchar.h> was correctChristian Weisgerber
2011-05-28tweak previous (my fault);Jason McIntyre
2011-05-28wcs(n)casecmp support, manpage comments from jmc@, okay deraadt@Marc Espie
2011-04-04Add a wcswidth man page (based on FreeBSD), and fix the implementationStefan Sperling
2010-09-24Add timingsafe_bcmp(3) to libc, mention that it's already in theMatthew Dempsky
2010-09-10observe the following spelling:Jason McIntyre
2010-06-02Avoid using and end pointer since strnlen(string, -1) is legalTodd C. Miller
2010-05-24Add HISTORY section, mostly for strnlen() but include strlen() forTodd C. Miller
2010-05-21remove unused variable.Charles Longeau
2010-05-19tweak previous;Jason McIntyre
2010-05-18add posix_madvise, posix_memalign, strndup, and strnlen. mostly fromTed Unangst
2010-03-24Modify example not to use an assignment in the if statement. We shouldn'tMark Kettenis
2010-02-03Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependentMiod Vallat
2009-12-05missing word;Jason McIntyre
2008-08-23unbreak wcschr(string, L'\0') which was incorrectly returning NULLDamien Miller
2008-03-19bcmp(3) tries to return length, which is a size_t, as an int.Ray Lai
2008-03-15- len is size_t, but n uses len and is an int. Matching those typesRay Lai
2008-03-15Convert c to unsigned char, like it says in the manual. Also addRay Lai
2007-11-27typos; ok jmc@Martynas Venckus
2007-10-25Make sure to use unique target names so that make -j does not break;Miod Vallat
2007-09-19add HISTORY; shortened version of diff from Ilya A. KovalenkoJason McIntyre
2007-09-03remove trailing whitespace;Jason McIntyre
2007-09-03add memrchr(3)Todd C. Miller
2007-09-02use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgTheo de Raadt
2007-08-08Show how to use strcspn(3) to trim newlines.Ray Lai
2007-05-31convert to new .Dd format;Jason McIntyre
2007-03-01If NLS is disabled, strerror does not print the correct error string.Alexander Bluhm
2007-02-19wording fix from wiz@netbsd, -r1.11;Jason McIntyre
2007-02-19from hubertf@netbsd:Jason McIntyre
2006-05-05Convert do {} while loop -> while {} for clarity. No binary changeTodd C. Miller