Fully matched MSL files (#555)

This commit is contained in:
mrshigure 2025-02-04 10:11:22 -08:00 committed by GitHub
parent a8d7f5e16d
commit 74cae4f16e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 14 additions and 220 deletions

View file

@ -7,9 +7,9 @@ extern "C" {
#define EOF -1L
extern const unsigned char __ctype_map[];
extern const unsigned char __lower_map[];
extern const unsigned char __upper_map[];
extern unsigned char __ctype_map[];
extern unsigned char __lower_map[];
extern unsigned char __upper_map[];
#define __control_char 0x01
#define __motion_char 0x02
@ -31,7 +31,7 @@ extern const unsigned char __upper_map[];
int tolower(int c);
int toupper(int c);
inline int isalpha(int c)
inline int _isalpha(int c)
{
return (int)(__ctype_map[(unsigned char)c] & __letter);
}