Skip to content

Commit 1372fe3

Browse files
committed
[CRT] Fix Visual C++ MSDEV hang by fixing _ismbcspace
1 parent 9690555 commit 1372fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/lib/crt/mbstring/ismbc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ int _ismbcsymbol( unsigned int c )
6666
*/
6767
int _ismbcspace( unsigned int c )
6868
{
69-
return ((c) == 0x8140);
69+
return (c == 0x20 || (c >= 0x09 && c <= 0x0D ));
7070
}
7171
/*
7272
* @implemented

0 commit comments

Comments
 (0)