blob: 62e08573c74d489958478cea19b0cd97bff51dce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef NUMPY_CORE_SRC_MULTIARRAY_NPY_BUFFER_H_
#define NUMPY_CORE_SRC_MULTIARRAY_NPY_BUFFER_H_
extern NPY_NO_EXPORT PyBufferProcs array_as_buffer;
NPY_NO_EXPORT int
_buffer_info_free(void *buffer_info, PyObject *obj);
NPY_NO_EXPORT PyArray_Descr*
_descriptor_from_pep3118_format(char const *s);
NPY_NO_EXPORT int
void_getbuffer(PyObject *obj, Py_buffer *view, int flags);
#endif /* NUMPY_CORE_SRC_MULTIARRAY_NPY_BUFFER_H_ */
|