2つの列挙型がある場合
typedef enum {
type1,
type2,
type3
} enum_one;
typedef enum {
type4,
type5,
type6
} enum_two;
コンポジットを作りたい
typedef enum {
enum_one,
enum_two
} another_enum;
これは許されますか?
2つの列挙型がある場合
typedef enum {
type1,
type2,
type3
} enum_one;
typedef enum {
type4,
type5,
type6
} enum_two;
コンポジットを作りたい
typedef enum {
enum_one,
enum_two
} another_enum;
これは許されますか?