Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
c_structs
/
deep.h
16
lines
·
15
sloc
·
206 bytes
·
e861b73eaf7ddad36ec4633eda3a4c2cfe2efc15
Raw
1
#ifndef __DEEP_H__
2
#define __DEEP_H__
3
4
struct
DeepStruct{
5
int
A1;
6
struct
{
7
int
A2;
8
struct
{
9
int
A3;
10
struct
{
11
int
A4;
12
} S3;
13
} S2;
14
} S1;
15
};
16
#endif
17