| 209 | |
| 210 | template <class ArrayT> |
| 211 | Py_ssize_t |
| 212 | getcharbuf (PyObject *obj, Py_ssize_t segment, const char **charBuf) |
| 213 | { |
| 214 | return getreadbuf<ArrayT> (obj, segment, (void **)charBuf); |
| 215 | } |
| 216 | |
| 217 | |
| 218 | template <class ArrayT> |
nothing calls this directly
no outgoing calls
no test coverage detected