#ifndef NUMPY_CORE_SRC_MULTIARRAY_TEXTREADING_ROWS_H_ #define NUMPY_CORE_SRC_MULTIARRAY_TEXTREADING_ROWS_H_ #define PY_SSIZE_T_CLEAN #include #include #include "textreading/stream.h" #include "textreading/field_types.h" #include "textreading/parser_config.h" NPY_NO_EXPORT PyArrayObject * read_rows(stream *s, npy_intp nrows, Py_ssize_t num_field_types, field_type *field_types, parser_config *pconfig, Py_ssize_t num_usecols, Py_ssize_t *usecols, Py_ssize_t skiplines, PyObject *converters, PyArrayObject *data_array, PyArray_Descr *out_descr, bool homogeneous); #endif /* NUMPY_CORE_SRC_MULTIARRAY_TEXTREADING_ROWS_H_ */