Remove trailing whitespace.
[cython.git] / tests / compile / a_capi.pyx
1 cdef public struct Foo:
2     int a, b
3
4 ctypedef struct Blarg:
5     int c, d
6
7 ctypedef public Foo Zax
8
9 cdef public class C[type C_Type, object C_Obj]:
10     pass
11
12 cdef public Zax *blarg
13
14 cdef api float f(Foo *x):
15     pass
16
17 cdef public void g(Blarg *x):
18     pass
19
20 cdef public api void h(Zax *x):
21     pass