summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.zig6
-rw-r--r--src/notcurses.zig18
2 files changed, 24 insertions, 0 deletions
diff --git a/src/main.zig b/src/main.zig
new file mode 100644
index 0000000..a93a524
--- /dev/null
+++ b/src/main.zig
@@ -0,0 +1,6 @@
+const std = @import("std");
+const notcurses = @import("notcurses.zig");
+
+pub fn main() anyerror!void {
+ var nc = notcurses.init();
+}
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);
+}