|
|
1
51
|
|
|
2
34
|
|
|
4
11
|
|
|
5
7
|
|
|
6
7
|
|
|
7
3
|
|
|
8
1
typedef struct {
int len;
char dat[];
};
typedef struct {
int whatever;
char dat[1];
} MY_STRUCT;
#define LARGEST_DAT_SIZE 0xF000
typedef struct {
int whatever;
char dat[LARGEST_DAT_SIZE];
} MY_STRUCT;
|