aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/locale
Commit message (Expand)AuthorAgeFilesLines
* Fix a bad free() call that would occur if some #if 0'd code was used.Tim J. Robbins2003-02-221-4/+6
* Whack 28 unused variables.Jacques Vidrine2003-02-181-1/+1
* The .Fn functionPhilippe Charnier2003-02-062-2/+2
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,Jens Schweikhardt2003-01-011-1/+1
* mdoc(7) police: Deal with self-xrefs.Ruslan Ermilov2002-12-241-1/+0
* mdoc(7) police: "The .Fa argument.".Ruslan Ermilov2002-12-191-0/+1
* mdoc(7) police: Fixed abuses of the .Ar and .Em macros.Ruslan Ermilov2002-12-182-2/+2
* mdoc(7) police: "The .Fn function".Ruslan Ermilov2002-12-182-0/+4
* Capitalize ASCII code names.Ruslan Ermilov2002-12-051-7/+7
* mdoc(7) police: sweep.Ruslan Ermilov2002-11-2915-88/+92
* mdoc(7) police: sweep.Ruslan Ermilov2002-11-291-1/+1
* libc_r wasn't so tied to libc for 22 months.Ruslan Ermilov2002-11-181-3/+1
* Add cross references to mbrtowc(3) and wcrtomb(3).Tim J. Robbins2002-11-101-1/+3
* Don't check whether the first byte of the buffer is a null byte whenTim J. Robbins2002-11-101-7/+1
* Describe the `n' and `ps' arguments to mbrlen().Tim J. Robbins2002-11-091-2/+17
* Typo: pointer to -> pointed toTim J. Robbins2002-11-091-1/+1
* Use wide character ctype functions directly instead of relying onTim J. Robbins2002-11-091-2/+2
* Add a missing return statement for the pwcs == NULL case (XSI extension).Tim J. Robbins2002-11-091-0/+1
* Add two additional references to the See Also section, which contain muchTim J. Robbins2002-10-301-2/+16
* Remove unnecessary inclusion of <rune.h> to make it obvious that this fileTim J. Robbins2002-10-291-1/+0
* Handle boundary cases more correctly; mblen(s, 0) and mbtowc(NULL, s, 0)Tim J. Robbins2002-10-282-8/+6
* Do not include <sys/syslimits.h> directly; it is not intended for generalGarrett Wollman2002-10-271-1/+2
* Style sweep.Tim J. Robbins2002-10-275-40/+32
* Use an internal buffer for the result when the first argument is NULL.Tim J. Robbins2002-10-251-0/+4
* Avoid truncating invalid wide characters that are outside the range ofTim J. Robbins2002-10-161-1/+8
* FA, FB and FC are lead bytes according to recent Microsoft documentation.Tim J. Robbins2002-10-141-1/+1
* Style changes. Mainly removing excessive whitespace and parens.Tim J. Robbins2002-10-141-24/+29
* Cosmetic: use LCMONETARY_SIZE_{FULL,MIN} defines like in other placesAndrey A. Chernov2002-10-121-4/+5
* Add a UTF-8 encoding method, which will eventually replace the antiqueTim J. Robbins2002-10-1010-9/+349
* Add support for the 6 new C99 struct lconv members dealing with formattingTim J. Robbins2002-10-094-4/+76
* Add a note to the Compatiblity section suggesting that these functionsTim J. Robbins2002-10-0613-13/+162
* Remove rants/whines about the rune interface being superior to theTim J. Robbins2002-10-061-16/+2
* Remove a completely incorrect statement from the Return Values section.Tim J. Robbins2002-10-061-5/+6
* Improve three instances of questionable or confusing grammar.Tim J. Robbins2002-10-031-5/+8
* Add an example.Tim J. Robbins2002-10-031-1/+22
* Document towlower() and towupper() in separate manual pages instead ofTim J. Robbins2002-10-033-24/+89
* Point out that although toupper() and tolower() really accept rune_t'sTim J. Robbins2002-10-032-4/+28
* towlower() appeared twice in the synopsis; one of the occurrences shouldTim J. Robbins2002-10-031-3/+3
* Add an Examples section with an example of how to use the functions.Tim J. Robbins2002-10-033-3/+54
* Warn when setinvalidrune() is referenced for consistency with the restTim J. Robbins2002-09-241-0/+1
* Add the remaining C99 wide character string to integer conversion functions.Tim J. Robbins2002-09-226-16/+550
* Deprecate the rest of the rune interface.Tim J. Robbins2002-09-182-0/+22
* Mark mbmb(), mbrune(), and mbrrune() as deprecated functions. We want toTim J. Robbins2002-09-182-0/+19
* Add wcstod() as a wrapper around strtod(). It does not handle any charactersTim J. Robbins2002-09-153-2/+162
* Use the heap instead of the stack to store temporary multibyte stringTim J. Robbins2002-09-151-10/+28
* Correct type of second argument: it is wchar_t ** restrict,Tim J. Robbins2002-09-121-2/+2
* Add an implementation of wcsftime() (wide character version of strftime()).Tim J. Robbins2002-09-113-2/+152
* Add wcstol() and wcstoul(), based on strtol() and strtoul().Tim J. Robbins2002-09-084-4/+314
* Style: One space between "restrict" qualifier and "*".Tim J. Robbins2002-09-0614-22/+22
* Set errno to EILSEQ when invalid multibyte sequences are detectedTim J. Robbins2002-09-033-3/+14