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

16 lines
242 B
C

#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#define SIZE 4
typedef struct {
uint32_t items[SIZE];
} WithoutAs;
typedef struct {
uint32_t items[SIZE];
} WithAs;
void some_fn(WithoutAs a, WithAs b);