Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Cython / tests / compile / excvalcheck.pyx
Size: Mime:
# mode: compile

cdef extern from "excvalcheck.h":
    pass

cdef extern int spam() except -1
cdef extern void grail() except *
cdef extern char *tomato() except? NULL

cdef void eggs():
    cdef int i
    cdef char *p
    i = spam()
    grail()
    p = tomato()

eggs()