fix #675: make 'by' a non-keyword also in .pyx files
[cython.git] / tests / compile / cast_ctypedef_array_T518_helper.h
1 struct __foo_struct { int i, j; };
2 typedef struct __foo_struct foo_t[1];
3
4 static void foo_init  (foo_t v) { v[0].i = 0; v[0].j = 0; }
5 static void foo_clear (foo_t v) { v[0].i = 0; v[0].j = 0; }