14 lines
165 B
C
14 lines
165 B
C
#include <stdarg.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
|
|
typedef struct A {
|
|
int32_t x;
|
|
float y;
|
|
} A;
|
|
|
|
typedef struct B {
|
|
A data;
|
|
} B;
|