Sort windows_sys.lst alphabetically

This commit is contained in:
Chris Denton 2023-05-05 14:37:23 +01:00
parent 3ffb27ff89
commit e314a3b21f
No known key found for this signature in database
GPG Key ID: 713472F2F45627DE
2 changed files with 632 additions and 629 deletions

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ fn main() -> io::Result<()> {
.lines()
.filter_map(|line| {
let line = line.trim();
if line.is_empty() || line.starts_with('#') { None } else { Some(line) }
if line.is_empty() || line.starts_with("//") { None } else { Some(line) }
})
.collect();