aboutsummaryrefslogtreecommitdiff
path: root/include/lib/monad.h
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-05 16:14:18 -0800
committerChristian C <cc@localhost>2025-03-05 16:14:18 -0800
commit74e46ee7709785f91e04ac42619e4a7e9f90bc18 (patch)
tree82f5140c42cff58d9a980e2737eea808e1820560 /include/lib/monad.h
parenta3684826417bf9cea4c24e8a82e9574feb64576d (diff)
Modularize
Diffstat (limited to 'include/lib/monad.h')
-rw-r--r--include/lib/monad.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/lib/monad.h b/include/lib/monad.h
new file mode 100644
index 0000000..4a68e0a
--- /dev/null
+++ b/include/lib/monad.h
@@ -0,0 +1,9 @@
+#ifndef INC_LIB_MONAD_H
+#define INC_LIB_MONAD_H
+
+struct Result {
+ void* data;
+ bool_t success;
+};
+
+#endif