initial commit for github
This commit is contained in:
commit
60968612de
370 changed files with 68427 additions and 0 deletions
37
test/ddlgenerators/files/original_files/enums.h
Normal file
37
test/ddlgenerators/files/original_files/enums.h
Normal file
|
@ -0,0 +1,37 @@
|
|||
typedef enum {
|
||||
C_UNKNOWN=0,
|
||||
C_RED=1,
|
||||
C_GREEN=2,
|
||||
C_BLUE=50,
|
||||
C_CYAN=2000
|
||||
} tColor;
|
||||
|
||||
|
||||
typedef enum tTimber {
|
||||
W_FIR=5,
|
||||
W_PINE=1630,
|
||||
W_OAK,
|
||||
W_SPRUCE
|
||||
} tWood;
|
||||
|
||||
enum tAlphabet {
|
||||
ABC, DEF, GHI};
|
||||
|
||||
typedef struct
|
||||
{
|
||||
tColor col;
|
||||
tTimber tim;
|
||||
tWood wood;
|
||||
tAlphabet alpha;
|
||||
} tEnums;
|
||||
|
||||
typedef bla blubb;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
tBla bla;
|
||||
tBlubb blubb;
|
||||
kaka kaka;
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue