mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
10 lines
391 B
C++
10 lines
391 B
C++
/* Header to test of C modules for arrays for Python: C_test.c */
|
|
|
|
/* ==== Prototypes =================================== */
|
|
|
|
// .... Python callable Vector functions ..................
|
|
static PyObject *np_kcardgame(PyObject *self, PyObject *args);
|
|
|
|
/* .... C vector utility functions ..................*/
|
|
PyArrayObject *pyvector(PyObject *objin);
|
|
int not_doublevector(PyArrayObject *vec);
|