This is to work around the Turkish locale issue, i.e., toupper('i') != toupper('I') if locale is "tr_TR"
| 1241 | // This is to work around the Turkish locale issue, i.e., |
| 1242 | // toupper('i') != toupper('I') if locale is "tr_TR" |
| 1243 | char uppercase(char c) { |
| 1244 | if ('a' <= c && c <= 'z') { |
| 1245 | return c + ('A' - 'a'); |
| 1246 | } |
| 1247 | return c; |
| 1248 | } |
| 1249 | } |
| 1250 | } |
| 1251 | } |
no outgoing calls
no test coverage detected