diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-07 22:22:16 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-07 22:22:16 +0100 |
| commit | 8f9e448b2ef6db7cd905540c21f3c5b190e7a1e7 (patch) | |
| tree | ae0285dd15042d1e9236a5ce2e60daf65acbdca0 /include/wctype.h | |
| parent | fc00c656c96528112d05cf0edf8631bd5eaea446 (diff) | |
Add bin/true and bin/false implementations
- Added assembly implementations for `true` and `false` commands.
- Updated Kbuild files to include new binaries.
- Removed unused libraries and headers.
- Cleaned up makefile and unused code.
Diffstat (limited to 'include/wctype.h')
| -rw-r--r-- | include/wctype.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/include/wctype.h b/include/wctype.h deleted file mode 100644 index 391c3d6b..00000000 --- a/include/wctype.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef __WCTYPE_H -#define __WCTYPE_H - -#undef WEOF -#define WEOF 0xffffffffU - -typedef unsigned wint_t; -typedef const int *wctrans_t; -typedef unsigned long wctype_t; -typedef struct __locale_t *locale_t; - -int iswalnum(wint_t); -int iswalnum_l(wint_t, locale_t); -int iswalpha(wint_t); -int iswalpha_l(wint_t, locale_t); -int iswblank(wint_t); -int iswblank_l(wint_t, locale_t); -int iswcntrl(wint_t); -int iswcntrl_l(wint_t, locale_t); -int iswctype(wint_t, wctype_t); -int iswctype_l(wint_t, wctype_t, locale_t); -int iswdigit(wint_t); -int iswdigit_l(wint_t, locale_t); -int iswgraph(wint_t); -int iswgraph_l(wint_t, locale_t); -int iswlower(wint_t); -int iswlower_l(wint_t, locale_t); -int iswprint(wint_t); -int iswprint_l(wint_t, locale_t); -int iswpunct(wint_t); -int iswpunct_l(wint_t, locale_t); -int iswspace(wint_t); -int iswspace_l(wint_t, locale_t); -int iswupper(wint_t); -int iswupper_l(wint_t, locale_t); -int iswxdigit(wint_t); -int iswxdigit_l(wint_t, locale_t); -wint_t towctrans(wint_t, wctrans_t); -wint_t towctrans_l(wint_t, wctrans_t, locale_t); -wint_t towlower(wint_t); -wint_t towlower_l(wint_t, locale_t); -wint_t towupper(wint_t); -wint_t towupper_l(wint_t, locale_t); -wctrans_t wctrans(const char *); -wctrans_t wctrans_l(const char *, locale_t); -wctype_t wctype(const char *); -wctype_t wctype_l(const char *, locale_t); - -#endif |
