/* C_test.h Header to test of C modules for Python */ #include /* function prototypes */ void initC_test(); static PyObject *square(PyObject *self, PyObject *args); static PyObject *squareroot(PyObject *self, PyObject *args); double mysqrt(double z); /* end C_test.h */