Fully matched MSL files

This commit is contained in:
mrshigure 2025-02-04 03:01:23 -08:00
parent a8d7f5e16d
commit 9ad51805a9
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);
}