mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Minor optimization to control character check.
This commit is contained in:
parent
9e8bc95b45
commit
2ee0b0356c
@ -234,7 +234,8 @@ uint8_t
|
||||
lxw_has_control_characters(const char *string)
|
||||
{
|
||||
while (string) {
|
||||
if (*string < 0x20 && *string != 0x0A && *string != 0x09)
|
||||
/* 0xE0 == 0b11100000 masks values > 0x19 == 0b00011111. */
|
||||
if (!(*string & 0xE0) && *string != 0x0A && *string != 0x09)
|
||||
return LXW_TRUE;
|
||||
|
||||
string++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user