Files
Jonathan Schwender 51a981cefc Rename expectations files
Rename expectation files to contain only one dot.
This is needed for the Cython tests as of Cython 3.
The following script was used in a clean repository
to rename the files:

```sh
 ls | sed -E -n 's/(.*)\.(both|tag)?((\..*)?\.(c|cpp|pyx))/mv "\1.\2\3" "\1_\2\3"/p' | sh
```
2023-09-04 19:37:45 +02:00

73 lines
1.6 KiB
C

#define CBINDGEN_PACKED __attribute__ ((packed))
#define CBINDGEN_ALIGNED(n) __attribute__ ((aligned(n)))
#include <stdarg.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
typedef struct RustAlign4Struct RustAlign4Struct;
typedef struct RustAlign4Union RustAlign4Union;
typedef struct RustPackedStruct RustPackedStruct;
typedef struct RustPackedUnion RustPackedUnion;
typedef struct UnsupportedAlign4Enum UnsupportedAlign4Enum;
typedef struct UnsupportedPacked4Struct UnsupportedPacked4Struct;
typedef struct UnsupportedPacked4Union UnsupportedPacked4Union;
typedef struct CBINDGEN_ALIGNED(1) Align1Struct {
uintptr_t arg1;
uint8_t *arg2;
} Align1Struct;
typedef struct CBINDGEN_ALIGNED(2) Align2Struct {
uintptr_t arg1;
uint8_t *arg2;
} Align2Struct;
typedef struct CBINDGEN_ALIGNED(4) Align4Struct {
uintptr_t arg1;
uint8_t *arg2;
} Align4Struct;
typedef struct CBINDGEN_ALIGNED(8) Align8Struct {
uintptr_t arg1;
uint8_t *arg2;
} Align8Struct;
typedef struct CBINDGEN_ALIGNED(32) Align32Struct {
uintptr_t arg1;
uint8_t *arg2;
} Align32Struct;
typedef struct CBINDGEN_PACKED PackedStruct {
uintptr_t arg1;
uint8_t *arg2;
} PackedStruct;
typedef union CBINDGEN_ALIGNED(1) Align1Union {
uintptr_t variant1;
uint8_t *variant2;
} Align1Union;
typedef union CBINDGEN_ALIGNED(4) Align4Union {
uintptr_t variant1;
uint8_t *variant2;
} Align4Union;
typedef union CBINDGEN_ALIGNED(16) Align16Union {
uintptr_t variant1;
uint8_t *variant2;
} Align16Union;
typedef union CBINDGEN_PACKED PackedUnion {
uintptr_t variant1;
uint8_t *variant2;
} PackedUnion;