* NumPyOS_ascii_tolower: * * Same as tolower under C locale */
| 394 | * Same as tolower under C locale |
| 395 | */ |
| 396 | static int |
| 397 | NumPyOS_ascii_tolower(int c) |
| 398 | { |
| 399 | if (c >= 'A' && c <= 'Z') { |
| 400 | return c + ('a'-'A'); |
| 401 | } |
| 402 | return c; |
| 403 | } |
| 404 | |
| 405 | |
| 406 | /* |
no outgoing calls
no test coverage detected