diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-01 12:47:35 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-02-01 12:47:35 +0100 |
| commit | 85bcada8cf78bdf2bfb3be583289686026e0f25e (patch) | |
| tree | 0ce404c4840432db9b6d3addd3947a736d103382 /src/estd/parser/context.zig | |
| parent | 2ce14aec655589f00442ab469b9d877a143eeefd (diff) | |
screen: start drm implementation
Diffstat (limited to 'src/estd/parser/context.zig')
| -rw-r--r-- | src/estd/parser/context.zig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/estd/parser/context.zig b/src/estd/parser/context.zig new file mode 100644 index 0000000..56fb025 --- /dev/null +++ b/src/estd/parser/context.zig @@ -0,0 +1,9 @@ +const std = @import("std"); +const Cursor = @import("../cursor.zig").Cursor; + +pub fn Context(comptime I: type) type { + return struct { + cursor: Cursor(I), + allocator: std.mem.Allocator, + }; +} |