summaryrefslogtreecommitdiff
path: root/csrc/data_struct.h
blob: 94818346c9eda7ff91f5bf6e004d75c2b6a444d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C)  2018 Iru Cai <mytbk920423@gmail.com>
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

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);