According to the documentation it is possible to use C header files generated from Cython. I have followed the Hello World example with no problem and now I wan
Hello World
You can use the api keyword
api
cdef api void hello(): print("hello") return;
This will autogenerate a "hello.h" when compiling.