File: template.pxd

package info (click to toggle)
montage 6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 23,120 kB
  • sloc: ansic: 205,662; python: 1,621; makefile: 1,547; javascript: 1,338; sh: 157; xml: 48
file content (11 lines) | stat: -rw-r--r-- 301 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
cdef extern from "montage.h":

    {% for func in functions %}

    cdef struct {{ func.name }}Return:
        {% for declaration in func.struct_vars_decl %}{{ declaration }}
        {% endfor %}

    cdef {{ func.name }}Return *{{ func.name }}({{ func.arguments_cdef|join(', ') }})

    {% endfor %}