strtol does not know whether to put a const qualifier on endptr, wrap * it so we can put this cast in one place. */
| 704 | * it so we can put this cast in one place. |
| 705 | */ |
| 706 | NPY_NO_EXPORT long int |
| 707 | strtol_const(char const *str, char const **endptr, int base) { |
| 708 | return strtol(str, (char**)endptr, base); |
| 709 | } |
| 710 | |
| 711 | /* |
| 712 | * Converts a substring given by 'str' and 'len' into |
no outgoing calls
no test coverage detected