summaryrefslogtreecommitdiff
path: root/src/lib/libc/string (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* from hubertf@netbsd:jmc2007-02-191-6/+18
* Convert do {} while loop -> while {} for clarity. No binary changemillert2006-05-052-10/+10
* fix badly broken code. okay millert@, deraadt@espie2006-04-171-7/+7
* (char)to{upper,lower}()deraadt2006-03-311-2/+2
* Activate missing wcswidth, as noted by Alexander Bluhm.espie2005-10-291-2/+2
* uncomment setlocale(3) entry;jmc2005-08-121-2/+2
* zap remaining rcsid.espie2005-08-0858-287/+56
* activate LC_CTYPE for 8 bits locale.espie2005-08-083-11/+11
* move non-standard COMPATIBILITY section to HISTORY, which seems morejmc2005-08-071-10/+10
* add HISTORY; ok jmcjaredy2005-08-061-1/+8
* - macro, punctuation, and rewording tweaksjaredy2005-08-064-18/+21
* sync function prototypes to reality; ok jmcjaredy2005-08-061-4/+5
* K&R -> ANSIespie2005-06-1922-120/+79
* bye bye whiteoutsmillert2005-06-152-9/+2
* Merge common functionality of __strsignal and strerror_r.otto2005-05-263-129/+50
* Only append number when it fits to avoid truncation and returnotto2005-05-081-14/+11
* Tidy up __strtosignal(): pass a buffer and length to its itoa() andtom2005-05-011-8/+12
* correct strlcpy abusebeck2005-04-201-4/+8