Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
relibc
Commits
f8f18ed7
Verified
Commit
f8f18ed7
authored
3 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Remove old _wctype module
parent
9f3aa6d4
No related branches found
No related tags found
1 merge request
!339
wctype
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/header/_wctype/cbindgen.toml
+0
-9
0 additions, 9 deletions
src/header/_wctype/cbindgen.toml
src/header/_wctype/mod.rs
+0
-78
0 additions, 78 deletions
src/header/_wctype/mod.rs
src/header/mod.rs
+0
-1
0 additions, 1 deletion
src/header/mod.rs
with
0 additions
and
88 deletions
src/header/_wctype/cbindgen.toml
deleted
100644 → 0
+
0
−
9
View file @
9f3aa6d4
sys_includes
=
[]
include_guard
=
"_RELIBC_WCTYPE_H"
language
=
"C"
style
=
"Tag"
no_includes
=
true
cpp_compat
=
true
[enum]
prefix_with_name
=
true
This diff is collapsed.
Click to expand it.
src/header/_wctype/mod.rs
deleted
100644 → 0
+
0
−
78
View file @
9f3aa6d4
//! wctype implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/wctype.h.html
use
crate
::
platform
::
types
::
*
;
// #[no_mangle]
pub
extern
"C"
fn
iswalnum
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswalpha
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswcntrl
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswdigit
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswgraph
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswlower
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswprint
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswpunct
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswspace
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswupper
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswxdigit
(
wc
:
wint_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
iswctype
(
wc
:
wint_t
,
charclass
:
wctype_t
)
->
c_int
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
towlower
(
wc
:
wint_t
)
->
wint_t
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
towupper
(
wc
:
wint_t
)
->
wint_t
{
unimplemented!
();
}
// #[no_mangle]
pub
extern
"C"
fn
wctype
(
property
:
*
const
c_char
)
->
c_int
{
unimplemented!
();
}
This diff is collapsed.
Click to expand it.
src/header/mod.rs
+
0
−
1
View file @
f8f18ed7
...
...
@@ -47,7 +47,6 @@ pub mod sys_statvfs;
pub
mod
sys_time
;
pub
mod
sys_timeb
;
//pub mod sys_times;
pub
mod
_wctype
;
pub
mod
arch_aarch64_user
;
pub
mod
arch_x64_user
;
pub
mod
sys_procfs
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment