arraykit 1.2.0__cp314-cp314t-win32.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,16 @@
1
+ # ifndef ARRAYKIT_SRC_DELIMITED_TO_ARRAYS_H_
2
+ # define ARRAYKIT_SRC_DELIMITED_TO_ARRAYS_H_
3
+
4
+ # include "Python.h"
5
+
6
+ // NOTE: implement skip_header, skip_footer in client Python, not here.
7
+ PyObject *
8
+ delimited_to_arrays(PyObject *Py_UNUSED(m), PyObject *args, PyObject *kwargs);
9
+
10
+ PyObject *
11
+ iterable_str_to_array_1d(PyObject *Py_UNUSED(m), PyObject *args, PyObject *kwargs);
12
+
13
+ PyObject *
14
+ split_after_count(PyObject *Py_UNUSED(m), PyObject *args, PyObject *kwargs);
15
+
16
+ # endif /* ARRAYKIT_SRC_DELIMITED_TO_ARRAYS_H_ */