mirror of
https://github.com/minetest/minetest.git
synced 2025-07-06 01:40:21 +02:00
Fix UTF-8 inner byte bounds
This commit is contained in:
@ -33,7 +33,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
#define TOSTRING(x) STRINGIFY(x)
|
||||
|
||||
// Checks whether a byte is an inner byte for an utf-8 multibyte sequence
|
||||
#define IS_UTF8_MULTB_INNER(x) (((unsigned char)x >= 0x80) && ((unsigned char)x <= 0xc0))
|
||||
#define IS_UTF8_MULTB_INNER(x) (((unsigned char)x >= 0x80) && ((unsigned char)x < 0xc0))
|
||||
|
||||
typedef std::map<std::string, std::string> StringMap;
|
||||
|
||||
|
Reference in New Issue
Block a user