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 / cargdef.pyx
Size: Mime:
# mode: compile

def f(obj, int i, double f, char *s1, char s2[]):
    pass

cdef g(obj, int i, double f, char *s1, char s2[]):
    pass

cdef do_g(object (*func)(object, int, double, char*, char*)):
    return func(1, 2, 3.14159, "a", "b")

do_g(&g)