/* CTF 1.8 */ typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; typealias integer { size = 16; align = 8; signed = false; base = 10; } := uint16_t; typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; trace { major = 1; minor = 8; uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; byte_order = le; packet.header := struct { uint32_t magic; uint8_t uuid[0x10]; }; }; struct Mystruct { enum : uint32_t { sel1, sel2, sel3 } tag; variant <"tag"> { struct { uint8_t _; } sel1; struct { uint16_t _; } sel2; struct { uint32_t _; } sel3; } field; };