| 61 | |
| 62 | |
| 63 | static npy_bool |
| 64 | string_is_fully_read(char const* start, char const* end) { |
| 65 | if (end == NULL) { |
| 66 | return *start == '\0'; /* null terminated */ |
| 67 | } |
| 68 | else { |
| 69 | return start >= end; /* fixed length */ |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | |
| 74 | static int |
no outgoing calls
no test coverage detected