Move wchar.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-12 15:11:15 +02:00
parent 7a0beab011
commit 4dad48271a
19 changed files with 34 additions and 34 deletions

View File

@ -75,9 +75,6 @@ integer.o \
ldiv.o \
lldiv.o \
mblen.o \
mbrlen.o \
mbrtowc.o \
mbsrtowcs.o \
mbstowcs.o \
mbtowc.o \
op-new.o \
@ -139,20 +136,23 @@ time/timegm.o \
ungetc.o \
vfscanf.o \
vsscanf.o \
wcrtomb.o \
wcscat.o \
wcschrnul.o \
wcschr.o \
wcscmp.o \
wcscpy.o \
wcscspn.o \
wcslen.o \
wcsncat.o \
wcsncpy.o \
wcsrchr.o \
wcsrtombs.o \
wcsspn.o \
wcstok.o \
wchar/mbrlen.o \
wchar/mbrtowc.o \
wchar/mbsrtowcs.o \
wchar/wcrtomb.o \
wchar/wcscat.o \
wchar/wcschrnul.o \
wchar/wcschr.o \
wchar/wcscmp.o \
wchar/wcscpy.o \
wchar/wcscspn.o \
wchar/wcslen.o \
wchar/wcsncat.o \
wchar/wcsncpy.o \
wchar/wcsrchr.o \
wchar/wcsrtombs.o \
wchar/wcsspn.o \
wchar/wcstok.o \
wcstombs.o \
wctomb.o \
wctype.o \

0
libc/sortix/wchar/.gitignore vendored Normal file
View File

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
mbrlen.cpp
wchar/mbrlen.cpp
Determine number of bytes in next multibyte character.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
mbrtowc.cpp
wchar/mbrtowc.cpp
Convert a multibyte sequence to a wide character.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
mbsrtowcs.cpp
wchar/mbsrtowcs.cpp
Convert a multibyte string to a wide-character string.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcrtomb.cpp
wchar/wcrtomb.cpp
Convert a wide character to a multibyte sequence.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcscat.cpp
wchar/wcscat.cpp
Appends a string onto another string.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcschr.cpp
wchar/wcschr.cpp
Searches a string for a specific character.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcschrnul.cpp
wchar/wcschrnul.cpp
Searches a string for a specific character.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcscmp.cpp
wchar/wcscmp.cpp
Compares two strings.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcscpy.cpp
wchar/wcscpy.cpp
Copies a string and returns dest.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcscspn.cpp
wchar/wcscspn.cpp
Search a string for a set of characters.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcslen.cpp
wchar/wcslen.cpp
Returns the length of a string.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcsncat.cpp
wchar/wcsncat.cpp
Appends parts of a string onto another string.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcsncpy.cpp
wchar/wcsncpy.cpp
Copies a string into a fixed size buffer and returns dest.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcsrchr.cpp
wchar/wcsrchr.cpp
Searches a string for a specific character.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcsrtombs.cpp
wchar/wcsrtombs.cpp
Convert a wide-character string to multibyte string.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcsspn.cpp
wchar/wcsspn.cpp
Search a string for a set of characters.
*******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcstok.cpp
wchar/wcstok.cpp
Extract tokens from strings.
*******************************************************************************/