trisquel-icecat/icecat/third_party/cbindgen/tests/expectations/generic_defaults.pyx
2025-10-06 02:35:48 -06:00

26 lines
577 B
Cython

from libc.stdint cimport int8_t, int16_t, int32_t, int64_t, intptr_t
from libc.stdint cimport uint8_t, uint16_t, uint32_t, uint64_t, uintptr_t
cdef extern from *:
ctypedef bint bool
ctypedef struct va_list
cdef extern from *:
ctypedef int16_t Foo_i16;
ctypedef int32_t Foo_i32;
ctypedef struct Bar_i32__u32:
Foo_i32 f;
uint32_t p;
ctypedef int64_t Foo_i64;
ctypedef Foo_i64 Baz_i64;
ctypedef struct NeverUsedWithDefault_i32:
int32_t field;
void foo_root(Foo_i16 f, Bar_i32__u32 b, Baz_i64 z);
void with_i32(NeverUsedWithDefault_i32 x);