summaryrefslogtreecommitdiff
path: root/src/lib/libc/string (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* typo: compare len against null needle, not haystackajacoutot2013-05-151-2/+2
* Add an implementation of memmem() -- from FreeBSD with some tweaks.ajacoutot2013-05-133-4/+145
* remove leftover NOLINT, WANTLINT, LINTFLAGS, LOBJ vars and lint targets.okan2012-08-021-21/+1
* fix an off-by-one error where the return value would point to thenaddy2012-07-111-2/+2
* Add strnlen() to libkern.matthew2012-04-261-1/+5
* tweak previous;jmc2012-04-031-3/+3
* simplify the strlcpy/strlcat manual page substantially. do lessderaadt2012-04-021-70/+58
* Bump standards years, as we conform to the new versions tooguenther2012-03-261-4/+4
* strsignal() was standardized in POSIX-2008guenther2012-03-261-2/+7
* fix SEE ALSO;jmc2012-01-171-2/+2
* Add stpcpy() and stpncpy(), pointless crap that made it into POSIX.guenther2012-01-174-3/+222
* grammar;jmc2012-01-141-2/+2
* this is sparta^WPOSIX 2008espie2012-01-141-2/+7
* strdup and strndup both use malloc. Make this fact explicit.lum2011-12-081-3/+5
* tweak previous;jmc2011-07-253-6/+6
* update HISTORY and SEE ALSO for all of string(3), together with variousschwarze2011-07-2553-237/+642
* Sync wcslcpy and wcslcat with strlcpy and strlcat. OK deraadt@millert2011-07-242-50/+26
* Minor function name tweaks.nicm2011-07-093-8/+8
* Instead of documenting all the wide string functions in wmemchr(3), addnicm2011-07-0918-139/+1327
* After a certain amount of fighting with the mbstowcs API, remove L fromnicm2011-07-081-4/+12
* Fix some awful code in the example, pointed out by millert@.nicm2011-07-051-3/+3
* Add wcsdup(), from NetBSD.nicm2011-07-043-3/+120
* fix wcscasecmp() parameters; <wchar.h> was correctnaddy2011-06-011-2/+2
* tweak previous (my fault);jmc2011-05-281-4/+4
* wcs(n)casecmp support, manpage comments from jmc@, okay deraadt@espie2011-05-283-5/+82
* Add a wcswidth man page (based on FreeBSD), and fix the implementationstsp2011-04-043-5/+68
* Add timingsafe_bcmp(3) to libc, mention that it's already in thematthew2010-09-243-5/+62
* observe the following spelling:jmc2010-09-102-9/+9
* Avoid using and end pointer since strnlen(string, -1) is legalmillert2010-06-021-4/+3
* Add HISTORY section, mostly for strnlen() but include strlen() formillert2010-05-241-2/+11
* remove unused variable.chl2010-05-211-2/+1
* tweak previous;jmc2010-05-192-13/+11
* add posix_madvise, posix_memalign, strndup, and strnlen. mostly fromtedu2010-05-185-9/+142
* Modify example not to use an assignment in the if statement. We shouldn'tkettenis2010-03-241-3/+4
* Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependentmiod2010-02-031-3/+3
* missing word;jmc2009-12-051-3/+3
* unbreak wcschr(string, L'\0') which was incorrectly returning NULLdjm2008-08-231-3/+5
* bcmp(3) tries to return length, which is a size_t, as an int.ray2008-03-191-4/+4
* - len is size_t, but n uses len and is an int. Matching those typesray2008-03-151-6/+12
* Convert c to unsigned char, like it says in the manual. Also addray2008-03-151-4/+3
* typos; ok jmc@martynas2007-11-271-2/+2
* Make sure to use unique target names so that make -j does not break;miod2007-10-251-25/+25
* add HISTORY; shortened version of diff from Ilya A. Kovalenkojmc2007-09-191-2/+7
* remove trailing whitespace;jmc2007-09-031-2/+2
* add memrchr(3)millert2007-09-033-5/+63
* use calloc() to avoid malloc(n * m) overflows; checked by djm canacar jsgderaadt2007-09-021-2/+2
* Show how to use strcspn(3) to trim newlines.ray2007-08-081-2/+14
* convert to new .Dd format;jmc2007-05-3136-72/+72
* If NLS is disabled, strerror does not print the correct error string.bluhm2007-03-011-2/+2
* wording fix from wiz@netbsd, -r1.11;jmc2007-02-191-2/+2