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 \ ldiv.o \
lldiv.o \ lldiv.o \
mblen.o \ mblen.o \
mbrlen.o \
mbrtowc.o \
mbsrtowcs.o \
mbstowcs.o \ mbstowcs.o \
mbtowc.o \ mbtowc.o \
op-new.o \ op-new.o \
@ -139,20 +136,23 @@ time/timegm.o \
ungetc.o \ ungetc.o \
vfscanf.o \ vfscanf.o \
vsscanf.o \ vsscanf.o \
wcrtomb.o \ wchar/mbrlen.o \
wcscat.o \ wchar/mbrtowc.o \
wcschrnul.o \ wchar/mbsrtowcs.o \
wcschr.o \ wchar/wcrtomb.o \
wcscmp.o \ wchar/wcscat.o \
wcscpy.o \ wchar/wcschrnul.o \
wcscspn.o \ wchar/wcschr.o \
wcslen.o \ wchar/wcscmp.o \
wcsncat.o \ wchar/wcscpy.o \
wcsncpy.o \ wchar/wcscspn.o \
wcsrchr.o \ wchar/wcslen.o \
wcsrtombs.o \ wchar/wcsncat.o \
wcsspn.o \ wchar/wcsncpy.o \
wcstok.o \ wchar/wcsrchr.o \
wchar/wcsrtombs.o \
wchar/wcsspn.o \
wchar/wcstok.o \
wcstombs.o \ wcstombs.o \
wctomb.o \ wctomb.o \
wctype.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 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/>. 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. 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 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/>. 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. 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 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/>. 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. 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 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/>. 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. 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 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/>. 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. 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 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/>. 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. 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 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/>. 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. 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 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/>. along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
wcscmp.cpp wchar/wcscmp.cpp
Compares two strings. Compares two strings.
*******************************************************************************/ *******************************************************************************/

View File

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