summaryrefslogtreecommitdiff
path: root/lib/libc/locale
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagrelease/5.4.0_cvscvs2svn2005-05-07127-127/+127
* MFC:Christian Brueffer2005-02-281-1/+1
* /me kicks cvs updateTom Rhodes2004-08-171-7/+1
* Fix incorrect code in an example. The previous example would produceTom Rhodes2004-08-171-2/+8
* Fix example.Tim J. Robbins2004-08-121-4/+5
* Implement wcwidth() as an inline function.Tim J. Robbins2004-08-121-11/+2
* Re-word the COMPATIBILITY section, taking care to use the word "deprecated"Tim J. Robbins2004-07-2912-98/+74
* Remove unnecessary #include directives.Tim J. Robbins2004-07-293-8/+0
* Prefer <runetype.h> to <rune.h>, since the latter is going away soon.Tim J. Robbins2004-07-295-5/+5
* Remove useless checks for characters longer than INT_MAX bytes.Tim J. Robbins2004-07-293-12/+0
* Add UTF-8-specific implementations of mbsnrtowcs() and wcsnrtombs().Tim J. Robbins2004-07-271-0/+163
* Return the correct value when dst == NULL and conversion has stopped afterTim J. Robbins2004-07-221-2/+2
* Implement the GNU extensions of mbsnrtowcs() and wcsnrtombs(). These areTim J. Robbins2004-07-2113-164/+315
* Add fast paths for conversion of plain ASCII characters.Tim J. Robbins2004-07-091-0/+13
* Add a function to iterate over all characters in a particular characterTim J. Robbins2004-07-083-2/+150
* Markup nits.Ruslan Ermilov2004-07-0513-70/+91
* Sort SEE ALSO references (in dictionary order, ignoring case).Ruslan Ermilov2004-07-042-2/+2
* Mechanically kill hard sentence breaks.Ruslan Ermilov2004-07-023-4/+8
* Removed trailing whitespace.Ruslan Ermilov2004-07-022-2/+2
* Markup, grammar, and spelling fixes.Ruslan Ermilov2004-06-302-23/+23
* Fixed a typo.Ruslan Ermilov2004-06-302-2/+2
* Prefix the names of members of _RuneLocale and its sub-structuresTim J. Robbins2004-06-236-87/+90
* Spelling fixes.Mike Pritchard2004-06-211-1/+1
* Buffer partial wide characters more efficiently: instead of storing theTim J. Robbins2004-05-271-31/+46
* Scan the source string for invalid wide characters in wcsrtombs()Tim J. Robbins2004-05-251-2/+9
* Grab all the information we need about a character with one call toTim J. Robbins2004-05-231-7/+5
* Use conversion state objects to store the accumulated wide character,Tim J. Robbins2004-05-171-63/+67
* Use a simpler and faster buffering scheme for partial multibyte characters.Tim J. Robbins2004-05-172-52/+80
* Use a simpler, faster buffering scheme for partial characters in mbrtowc().Tim J. Robbins2004-05-141-21/+27
* Allow encoding modules to override the default implementations ofTim J. Robbins2004-05-138-9/+113
* Fix braino in previous: check that the second byte in the characterTim J. Robbins2004-05-132-2/+2
* Reduce overhead by calling internal versions of the multibyte conversionTim J. Robbins2004-05-128-11/+19
* Move prototypes of various encoding-related functions into a new headerTim J. Robbins2004-05-1216-71/+72
* In the absence of proper validation, at least check that null bytesTim J. Robbins2004-05-114-1/+19
* Use a binary search to find the range containing a character inTim J. Robbins2004-05-093-20/+34
* Rewrite split_lines() to operate safelyAndrey A. Chernov2004-04-251-3/+7
* Perform some basic validation of multibyte conversion state objects.Tim J. Robbins2004-04-128-16/+116
* Remove a nonsensical remark about byte order markers in UTF-8 streams.Tim J. Robbins2004-04-121-6/+1
* Document the meaning of the zero return value.Tim J. Robbins2004-04-112-6/+11
* Fix a typo. I was locked out for two days from my machine.David Xu2004-04-101-1/+1
* Don't cast away const qualifiers.Tim J. Robbins2004-04-108-8/+8
* Update manual pages for change to C99 mbrtowc() semantics.Tim J. Robbins2004-04-0812-134/+143
* Allow partial multibyte characters to accumulate in conversion stateTim J. Robbins2004-04-0712-89/+350
* Begin conversions for sgetrune() and sputrune() in the initialTim J. Robbins2004-04-071-3/+12
* Prepare to handle state-dependent encodings. This mainly involves notTim J. Robbins2004-04-074-17/+26
* Begin in the initial shift state in mbstowcs() and wcstombs().Tim J. Robbins2004-04-072-2/+6
* Prepare to handle state-dependent encodings. This mainly involves notTim J. Robbins2004-04-0612-71/+87
* Remove support for emulating mbrtowc() and wcrtomb() in terms of theTim J. Robbins2004-04-044-89/+4
* Reimplement the GB18030 encoding method using the new-style (mbrtowc()/Tim J. Robbins2004-04-041-123/+137
* Reimplement the deprecated UTF2 encoding method using the UTF-8 codeTim J. Robbins2004-04-041-104/+97