diff options
Diffstat (limited to 'csrc/data_struct.h')
-rw-r--r-- | csrc/data_struct.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/csrc/data_struct.h b/csrc/data_struct.h new file mode 100644 index 0000000..2fa06e9 --- /dev/null +++ b/csrc/data_struct.h @@ -0,0 +1,11 @@ +struct st +{ + int16_t f0; + int16_t f2; + int16_t f4; + int16_t f6; + int16_t * f8; + int16_t data[0]; +}; + +struct st * allocate_some_struct(int a1, int a2, int a3, int a4); |