diff options
author | Tom Barrett <tom@tombarrett.xyz> | 2021-12-12 17:00:10 +0100 |
---|---|---|
committer | Tom Barrett <tom@tombarrett.xyz> | 2021-12-12 17:00:10 +0100 |
commit | 83c27ccc818df03c906ddc90357b99fddbfafbc0 (patch) | |
tree | fa9171f10331dbe46a1d671494782b1ba3c375a0 /src/notcurses.zig |
start
Diffstat (limited to 'src/notcurses.zig')
-rw-r--r-- | src/notcurses.zig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/notcurses.zig b/src/notcurses.zig new file mode 100644 index 0000000..4a790b8 --- /dev/null +++ b/src/notcurses.zig @@ -0,0 +1,18 @@ +const std = @import("std"); +const notcurses = @cImport(@cInclude("notcurses/notcurses.h")); + +pub const default_notcurses_options = notcurses.notcurses_options{ + .termtype = null, + //.renderfp = null, + .loglevel = notcurses.ncloglevel_e.NCLOGLEVEL_SILENT, + .margin_t = 0, + .margin_r = 0, + .margin_b = 0, + .margin_l = 0, + .flags = 0, +}; + +pub fn init() ?*notcurses.notcurses { + var options = default_notcurses_options; + return notcurses.notcurses_init(&options, null); +} |