summaryrefslogtreecommitdiff
path: root/csrc/data_struct.h
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2018-08-28 11:29:58 +0800
committerIru Cai <mytbk920423@gmail.com>2018-08-28 11:33:58 +0800
commit98d8ab338e1a662966bebad95fdd8c07cecbe070 (patch)
tree58a2b96f230d8995d2809cc19ec09a383af4d733 /csrc/data_struct.h
parent44dd43bd73af28df7bd7afd8374c0a449cea6870 (diff)
downloadrich4-98d8ab338e1a662966bebad95fdd8c07cecbe070.tar.xz
allocate_some_struct
Diffstat (limited to 'csrc/data_struct.h')
-rw-r--r--csrc/data_struct.h11
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);