summaryrefslogtreecommitdiff
path: root/src/lib/libc/string (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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
* fix wmemchr.3 MLINKS;jmc2005-04-161-2/+3
* Remove redundant linetom2005-04-161-3/+2
* introduce some wchar functions (from citrus and an itojun@ diff)espie2005-04-141-3/+26
* - our pages do not have a LIBRARY section;jmc2005-04-132-5/+5
* Import w* functions so that I can send smaller diffs around.espie2005-04-1325-0/+1592
* ansify + deregister. no binary change on i386. ok deraadt@ pat@ moritz@otto2005-03-308-64/+45
* strcasestr(3), a case-insensitive version of strstr(3). already in netbsdderaadt2005-03-303-17/+88
* Be correct in our man pages when talking about NUL termination (that is,cloder2005-02-2514-34/+34
* typos, then -> than, from Michael Knudsenjaredy2004-12-101-2/+2
* repair libkern support (again) and add rcsidsmickey2004-11-287-13/+31
* Missed this in the __strerror() removal.millert2004-05-031-2/+2
* No longer need __strerror(3) now that we use strerror_r() inside libc.millert2004-05-031-46/+0
* Do a better job of documenting strerror_r() and add an ERRORS section.millert2004-05-031-15/+43
* build the error message in strerror_r.c directly, avoiding one copy there.espie2004-05-033-120/+109
* let __strerror fill precisely the part of the buffer it can.espie2004-05-011-17/+18
* Let __strerror work by fixing a number of problems. Work by tholo and I,espie2004-04-301-22/+52
* make Nm match Dt;jmc2004-02-101-10/+2
* make Nm match Dt; found by pb@jmc2004-02-091-23/+2
* Fix the example code. The loop invariant 'i' was not bound by MAXTOKENSmillert2004-01-201-3/+3