fn testIsAbsoluteWindows(path: []const u8, expected_result: bool) !void
fn testIsAbsoluteWindows(path: []const u8, expected_result: bool) !void { try testing.expectEqual(expected_result, isAbsoluteWindows(path)); const path_w = try std.unicode.wtf8ToWtf16LeAllocZ(std.testing.allocator, path); defer std.testing.allocator.free(path_w); try testing.expectEqual(expected_result, isAbsoluteWindowsW(path_w)); try testing.expectEqual(expected_result, isAbsoluteWindowsWtf16(path_w)); }