Lots of fixes importing SDL source wholesale into a new iOS project
--HG-- rename : src/libm/math.h => src/libm/math_libm.h
This commit is contained in:
parent
e112859e94
commit
ad2a21d404
135 changed files with 493 additions and 1093 deletions
|
@ -31,7 +31,7 @@
|
|||
#define UTF8_IsLeadByte(c) ((c) >= 0xC0 && (c) <= 0xF4)
|
||||
#define UTF8_IsTrailingByte(c) ((c) >= 0x80 && (c) <= 0xBF)
|
||||
|
||||
int UTF8_TrailingBytes(unsigned char c)
|
||||
static int UTF8_TrailingBytes(unsigned char c)
|
||||
{
|
||||
if (c >= 0xC0 && c <= 0xDF)
|
||||
return 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue