summaryrefslogtreecommitdiff
path: root/schewm.c
diff options
context:
space:
mode:
authorSamuel Fadel <samuel@nihil.ws>2022-12-01 15:03:05 +0100
committerSamuel Fadel <samuel@nihil.ws>2022-12-01 15:03:05 +0100
commit7aa66702b2b9396add0cc20849ec89a48495c7ff (patch)
tree3d5bf019313264ff6527e5cfb464b060113b44aa /schewm.c
Initial commit.
Sketching Scheme/C interop.
Diffstat (limited to 'schewm.c')
-rw-r--r--schewm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/schewm.c b/schewm.c
new file mode 100644
index 0000000..72f89bf
--- /dev/null
+++ b/schewm.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+#include <stdbool.h>
+#include <stdlib.h>
+
+bool wm_init() {
+ return true;
+}
+
+void wm_quit(const char *m) {
+ printf("hello, %s\n", m);
+}