mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Move wchar.h functions into their own directory.
This commit is contained in:
parent
7a0beab011
commit
4dad48271a
19 changed files with 34 additions and 34 deletions
|
@ -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
0
libc/sortix/wchar/.gitignore
vendored
Normal 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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
|
@ -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.
|
||||||
|
|
||||||
*******************************************************************************/
|
*******************************************************************************/
|
Loading…
Reference in a new issue