Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
7607815b
Commit
7607815b
authored
Jan 31, 1999
by
Pascal Cuoq
Committed by
Alexandre Julliard
Jan 31, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
IsCharAlpha32A: use look-up table from ole2nls.c.
parent
2e4e8c62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
lstr.c
misc/lstr.c
+5
-2
No files found.
misc/lstr.c
View file @
7607815b
...
...
@@ -31,6 +31,9 @@
#include "module.h"
#include "debug.h"
extern
const
WORD
OLE2NLS_CT_CType3_LUT
[];
/* FIXME: does not belong here */
/* Funny to divide them between user and kernel. */
/* be careful: always use functions from wctype.h if character > 255 */
...
...
@@ -446,7 +449,7 @@ LPWSTR WINAPI CharUpper32W(LPWSTR x)
*/
BOOL32
WINAPI
IsCharAlpha32A
(
CHAR
x
)
{
return
isalpha
(
x
);
return
(
OLE2NLS_CT_CType3_LUT
[(
unsigned
char
)
x
]
&
C3_ALPHA
);
}
/***********************************************************************
...
...
@@ -455,7 +458,7 @@ BOOL32 WINAPI IsCharAlpha32A(CHAR x)
*/
BOOL32
WINAPI
IsCharAlphaNumeric32A
(
CHAR
x
)
{
return
isalnum
(
x
)
;
return
IsCharAlpha32A
(
x
)
||
isdigit
(
x
)
;
}
/***********************************************************************
...
...
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