const args = [_][*:null]const ?[*:0]const u8{"-xf", out_path};
try std.os.execvpeZ("tar", args, .{out_path});
Or how to create a [*:null]const ?[*:0]const u8
I'm trying to execute tar using the standard library, but am not sure how to create a many-item pointer from values of known size. out_path is just a []u8.