aboutsummaryrefslogtreecommitdiff
path: root/include/csx.h
diff options
context:
space:
mode:
authorAleksey Veresov <aleksey@veresov.pro>2021-01-02 19:24:13 +0300
committerAleksey Veresov <aleksey@veresov.pro>2021-01-02 19:24:13 +0300
commit0c32a26c9a43b2d45968b9ac59b8916c1d4092d1 (patch)
treeba7d6ef7f3749a42a6118c35996f2931aa4f83e2 /include/csx.h
parent6b08e86c9a16bfac5a208a04926dcc66b861a096 (diff)
downloadcsx-0c32a26c9a43b2d45968b9ac59b8916c1d4092d1.tar
csx-0c32a26c9a43b2d45968b9ac59b8916c1d4092d1.tar.xz
csx-0c32a26c9a43b2d45968b9ac59b8916c1d4092d1.zip
.
Diffstat (limited to 'include/csx.h')
-rw-r--r--include/csx.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/csx.h b/include/csx.h
new file mode 100644
index 0000000..90d18c2
--- /dev/null
+++ b/include/csx.h
@@ -0,0 +1,19 @@
+#ifndef CSX_INCLUDED
+#define CSX_INCLUDED
+
+
+typedef void *(csx_list_fn)(void *head, ...);
+void *csx_list(void *head, ...);
+
+typedef int *(csx_num_fn)(int num);
+int *csx_num(int num);
+
+void *csx_eval(void *expression);
+
+typedef void *(csx_base_data)(void *arg);
+void *csx_base(csx_base_data base);
+
+char *csx_name(const char *name);
+
+
+#endif