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

ctypedef struct order:
    int spam
    int eggs

cdef order order1

order1.spam = 7
order1.eggs = 2

ctypedef struct linked:
    int a
    linked *next