# | Line 394 | Line 394 | static enum Token get_hex_number(uint32 | |
---|---|---|
394 | return T_NULL; | |
395 | ||
396 | do { | |
397 | + | c = tolower(c); |
398 | if (c < 'a') | |
399 | i = (i << 4) + (c - '0'); | |
400 | else |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |