diff options
Diffstat (limited to 'schewm.c')
-rw-r--r-- | schewm.c | 11 |
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); +} |