Skip to content

Instantly share code, notes, and snippets.

@hryx

hryx/vla.zig Secret

Created July 8, 2019 02:59
Show Gist options
  • Save hryx/27934c546a4625bd9c351a60a90d6686 to your computer and use it in GitHub Desktop.
Save hryx/27934c546a4625bd9c351a60a90d6686 to your computer and use it in GitHub Desktop.
// https://github.com/ziglang/zig/issues/172
// https://github.com/ziglang/zig/issues/173
fn Buffer(N: usize) type {
return extern struct {
age: u8 = 0,
data: [*]u8 = &@This().data_raw,
data_raw: [N]u8 = [_]u8{undefined} ** N,
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment