pub const RcSourceFile = struct
pub const RcSourceFile = struct { flags: Flags, file: LazyPath.Index, args: Storage.FlagList(.flags, .args_len, String), include_paths: Storage.FlagLengthPrefixedList(.flags, .include_paths, LazyPath.Index), pub const Index = enum(u32) { _, pub fn get(this: @This(), c: *const Configuration) RcSourceFile { return extraData(c, RcSourceFile, @backingInt(this)); } }; pub const Flags = packed struct(u32) { /// C compiler CLI flags. args_len: u31, include_paths: bool, }; }