diff options
Diffstat (limited to 'numpy/core/src/arrayobject.h')
-rw-r--r-- | numpy/core/src/arrayobject.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/numpy/core/src/arrayobject.h b/numpy/core/src/arrayobject.h index cd66e9108..f5cb1490b 100644 --- a/numpy/core/src/arrayobject.h +++ b/numpy/core/src/arrayobject.h @@ -114,6 +114,16 @@ array_richcompare(PyArrayObject *self, PyObject *other, int cmp_op); NPY_NO_EXPORT PyObject * array_subscript_simple(PyArrayObject *self, PyObject *op); +NPY_NO_EXPORT size_t +_array_fill_strides(intp *strides, intp *dims, int nd, size_t itemsize, + int inflag, int *objflags); + +NPY_NO_EXPORT int +_IsAligned(PyArrayObject *ap); + +NPY_NO_EXPORT Bool +_IsWriteable(PyArrayObject *ap); + /* FIXME: this is defined in multiarraymodule.c ... */ NPY_NO_EXPORT PyObject * __New_PyArray_Std(PyArrayObject *self, int axis, int rtype, PyArrayObject *out, |