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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Tornax O7
relibc
Commits
ae7cee26
Verified
Commit
ae7cee26
authored
3 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Move wctype_t definition to wctype rust header
parent
e5d2ba75
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/bits/wctype.h
+0
-1
0 additions, 1 deletion
include/bits/wctype.h
include/stddef.h
+0
-1
0 additions, 1 deletion
include/stddef.h
src/header/wctype/mod.rs
+2
-0
2 additions, 0 deletions
src/header/wctype/mod.rs
src/platform/types.rs
+0
-1
0 additions, 1 deletion
src/platform/types.rs
with
2 additions
and
3 deletions
include/bits/wctype.h
+
0
−
1
View file @
ae7cee26
...
...
@@ -2,7 +2,6 @@
#define _BITS_WCTYPE_H
#include
<stdint.h>
#define __need_wctype_t
#define __need_wint_t
#endif
/* _BITS_WCTYPE_H */
This diff is collapsed.
Click to expand it.
include/stddef.h
+
0
−
1
View file @
ae7cee26
...
...
@@ -12,7 +12,6 @@ typedef __PTRDIFF_TYPE__ ptrdiff_t;
#ifndef __cplusplus
typedef
int32_t
wchar_t
;
#endif
/* #ifndef __cplusplus */
typedef
uint32_t
wctype_t
;
typedef
uint32_t
wint_t
;
...
...
This diff is collapsed.
Click to expand it.
src/header/wctype/mod.rs
+
2
−
0
View file @
ae7cee26
...
...
@@ -11,6 +11,8 @@ mod alpha;
mod
casecmp
;
mod
punct
;
pub
type
wctype_t
=
u32
;
pub
const
WEOF
:
wint_t
=
0xFFFF_FFFFu32
;
pub
const
WCTYPE_ALNUM
:
wctype_t
=
1
;
...
...
This diff is collapsed.
Click to expand it.
src/platform/types.rs
+
0
−
1
View file @
ae7cee26
...
...
@@ -45,7 +45,6 @@ pub type c_long = i64;
pub
type
c_ulong
=
u64
;
pub
type
wchar_t
=
i32
;
pub
type
wctype_t
=
u32
;
pub
type
wint_t
=
u32
;
pub
type
regoff_t
=
size_t
;
...
...
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