#ifndef NUMPY_CORE_SRC_MULTIARRAY_SCALARTYPES_H_ #define NUMPY_CORE_SRC_MULTIARRAY_SCALARTYPES_H_ /* * Internal look-up tables, casting safety is defined in convert_datatype.h. * Most of these should be phased out eventually, but some are still used. */ extern NPY_NO_EXPORT signed char _npy_scalar_kinds_table[NPY_NTYPES_LEGACY]; extern NPY_NO_EXPORT signed char _npy_type_promotion_table[NPY_NTYPES_LEGACY][NPY_NTYPES_LEGACY]; extern NPY_NO_EXPORT signed char _npy_smallest_type_of_kind_table[NPY_NSCALARKINDS]; extern NPY_NO_EXPORT signed char _npy_next_larger_type_table[NPY_NTYPES_LEGACY]; NPY_NO_EXPORT void initialize_casting_tables(void); NPY_NO_EXPORT void initialize_numeric_types(void); NPY_NO_EXPORT void gentype_struct_free(PyObject *ptr); NPY_NO_EXPORT int is_anyscalar_exact(PyObject *obj); NPY_NO_EXPORT int _typenum_fromtypeobj(PyObject *type, int user); NPY_NO_EXPORT void * scalar_value(PyObject *scalar, PyArray_Descr *descr); #endif /* NUMPY_CORE_SRC_MULTIARRAY_SCALARTYPES_H_ */