blob: aa17199541e7a3253a6364d34afc47651e0f7bb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _NPY_CORE_SRC_UMATH_STRING_UFUNCS_H_
#define _NPY_CORE_SRC_UMATH_STRING_UFUNCS_H_
#ifdef __cplusplus
extern "C" {
#endif
NPY_NO_EXPORT int
init_string_ufuncs(PyObject *umath);
NPY_NO_EXPORT PyObject *
_umath_strings_richcompare(
PyArrayObject *self, PyArrayObject *other, int cmp_op, int rstrip);
#ifdef __cplusplus
}
#endif
#endif /* _NPY_CORE_SRC_UMATH_STRING_UFUNCS_H_ */
|