diff options
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); +} |