finished?

This commit is contained in:
2026-05-21 19:50:29 +02:00
parent d02489507d
commit ea225b9c33
7 changed files with 7 additions and 5 deletions
-2
View File
@@ -33,12 +33,10 @@ pub fn classify(name: []const u8) Category {
for (entry.extensions) |ext| {
const eicDocument = std.ascii.eqlIgnoreCase(extension, ext);
if (eicDocument) {
std.debug.print("{s} found!\n", .{@tagName(entry.category)});
return entry.category;
}
}
}
std.debug.print("no compatible extensions found! \n", .{});
return .other;
}