summaryrefslogtreecommitdiffstats
path: root/libc/string/strxfrm.c
Commit message (Collapse)AuthorAgeFilesLines
* Complete split of all the string functions. Hope haven't broken too much. ↵Peter S. Mazinger2006-01-031-0/+9
| | | | wcscoll/strcoll needs some love ...
* Added some temporary "stubs" for collation.Manuel Novoa III2002-11-081-47/+0
| | | | | | | | strcoll is an alias for strcmp. strxfrm is an alias for strlcpy. wcscoll is an alias for wcscmp. wcsxfrm is implemented as a wchar version of strlcpy. Real locale-dependent implementations are coming soon.
* Write a new strxfrm that doesn't make function calls. Uses the same logic asEric Andersen2002-06-121-0/+47
before but unrolls the func calls and thereby eliminates some steps and some bytes. Now adds just 40 bytes to .text. -Erik