fn supportedWindowsProgramExtension(ext: []const u8) bool
fn supportedWindowsProgramExtension(ext: []const u8) bool { inline for (@typeInfo(std.process.WindowsExtension).@"enum".field_names) |field_name| { if (std.ascii.eqlIgnoreCase(ext, "." ++ field_name)) return true; } return false; }