* NumPyOS_ascii_isdigit: * * Same as isdigit under C locale */
| 370 | * Same as isdigit under C locale |
| 371 | */ |
| 372 | static int |
| 373 | NumPyOS_ascii_isdigit(char c) |
| 374 | { |
| 375 | return (c >= '0' && c <= '9'); |
| 376 | } |
| 377 | |
| 378 | |
| 379 | /* |
no outgoing calls
no test coverage detected