Fast and reasonably complete (framebuffer) terminal emulator (Zig fork)
1# Flanterm 2Adapted from [https://codeberg.org/Mintsuki/Flanterm](https://codeberg.org/Mintsuki/Flanterm) 3for Zig. Read the C code and original README for more information. 4 5## Usage 6First, add the package to your build.zig.zon: 7`zig fetch --save git+https://tangled.sh/@sydney.blue/flanterm.zig#trunk` 8Then, add the following to your build.zig: 9```zig 10const flanterm_dep = b.dependency("flanterm", .{}); 11const flanterm_mod = flanterm.module("flanterm"); 12exe.root_module.addImport("flanterm", flanterm_mod); 13``` 14 15Now, you can import the `flanterm` module and use the helpers. More 16bindings will be added as needed, feel free to contribute anything 17you would find useful.