aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/locale/wcsnrtombs.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix comparisons that test if an unsigned value is < 0.Stefan Farfeleder2005-02-121-2/+2
| | | | | | | Reviewed by: tjr Notes: svn path=/head/; revision=141716
* Return the correct value when dst == NULL and conversion has stopped afterTim J. Robbins2004-07-221-2/+2
| | | | | | | nwc dropping to zero. Notes: svn path=/head/; revision=132525
* Implement the GNU extensions of mbsnrtowcs() and wcsnrtombs(). These areTim J. Robbins2004-07-211-0/+111
convenient when the source string isn't null-terminated. Implement the other conversion functions (mbstowcs(), mbsrtowcs(), wcstombs(), wcsrtombs()) in terms of these new functions. Notes: svn path=/head/; revision=132497