| 108 | } |
| 109 | |
| 110 | unsigned char kwsysString_tolower(char c) |
| 111 | { |
| 112 | unsigned char const uc = (unsigned char)c; |
| 113 | /* Push 'A-Z' to 230-255 so integer division by 230 is 1 only for them. */ |
| 114 | return (unsigned char)(uc ^ ((((uc + 230 - 'A') & 0xFF) / 230) << 5)); |
| 115 | } |
| 116 | |
| 117 | unsigned char kwsysString_toupper(char c) |
| 118 | { |
no outgoing calls
searching dependent graphs…