Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nx-libs
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dimbor
nx-libs
Commits
ba27cae6
Commit
ba27cae6
authored
Feb 04, 2017
by
Mike Gabriel
Committed by
Mihai Moldovan
Mar 03, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libNX_X11/lcUTF8.c: Drop not-used X11/lcUniConv/ascii.h.
parent
949f5e04
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
28 deletions
+0
-28
lcUTF8.c
nx-X11/lib/X11/lcUTF8.c
+0
-3
ascii.h
nx-X11/lib/X11/lcUniConv/ascii.h
+0
-25
No files found.
nx-X11/lib/X11/lcUTF8.c
View file @
ba27cae6
...
...
@@ -163,9 +163,6 @@ typedef struct _Utf8ConvRec {
#include "lcUniConv/utf8.h"
#include "lcUniConv/ucs2be.h"
#ifdef notused
#include "lcUniConv/ascii.h"
#endif
#include "lcUniConv/iso8859_1.h"
#include "lcUniConv/iso8859_2.h"
#include "lcUniConv/iso8859_3.h"
...
...
nx-X11/lib/X11/lcUniConv/ascii.h
deleted
100644 → 0
View file @
949f5e04
/*
* ASCII
*/
static
int
ascii_mbtowc
(
conv_t
conv
,
ucs4_t
*
pwc
,
const
unsigned
char
*
s
,
int
n
)
{
unsigned
char
c
=
*
s
;
if
(
c
<
0x80
)
{
*
pwc
=
(
ucs4_t
)
c
;
return
1
;
}
return
RET_ILSEQ
;
}
static
int
ascii_wctomb
(
conv_t
conv
,
unsigned
char
*
r
,
ucs4_t
wc
,
int
n
)
{
if
(
wc
<
0x0080
)
{
*
r
=
wc
;
return
1
;
}
return
RET_ILSEQ
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment