aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-10-20 22:47:03 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-10-23 18:25:23 +0300
commit4cf7c8bacfc836cff5278317cb32dc029cb87273 (patch)
tree58d30dca3fe413c146fd0020abf8796606030db5 /include
parentc5babf57de94a9a5e35c4bbb1237f3bffd15456c (diff)
downloadlyn-4cf7c8bacfc836cff5278317cb32dc029cb87273.tar.gz
lyn-4cf7c8bacfc836cff5278317cb32dc029cb87273.zip
play around with guile as a backend
+ I have officially devolved my language into an alternative syntax for Scheme. Oh well.
Diffstat (limited to 'include')
-rw-r--r--include/lyn/lookup.h29
-rw-r--r--include/lyn/lyn.h13
2 files changed, 3 insertions, 39 deletions
diff --git a/include/lyn/lookup.h b/include/lyn/lookup.h
deleted file mode 100644
index 577d450..0000000
--- a/include/lyn/lookup.h
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef LYN_LOOKUP_H
-#define LYN_LOOKUP_H
-
-#include <stddef.h>
-
-struct lookup_node {
- unsigned long hash;
- struct lookup_node *left, *right;
- char data[]; /* should be max aligned */
-};
-
-struct lookup {
- size_t ns;
- struct lookup_node *root;
-};
-
-struct lookup lookup_create(size_t s);
-void lookup_destroy(struct lookup *l);
-
-void *lookup_insert(struct lookup *l, const char *key, const void *n);
-void *lookup_at(struct lookup *l, const char *key);
-
-#define lookupt_insert(type, l, key, n)\
- (type *)lookup_insert(type, l, key, n)
-
-#define lookupt_at(type, l, key)\
- *(type *)lookup_at(&l, key)
-
-#endif /* LYN_LOOKUP_H */
diff --git a/include/lyn/lyn.h b/include/lyn/lyn.h
index ff79979..40429c2 100644
--- a/include/lyn/lyn.h
+++ b/include/lyn/lyn.h
@@ -1,23 +1,16 @@
#ifndef LYN_H
#define LYN_H
+#include <stdio.h>
#include <lyn/parser.h>
-#include <lyn/lookup.h>
#include <lyn/vec.h>
#define lyn_at(v, i)\
vect_at(struct lyn_value, v, i)
-struct lyn_scope {
- struct lyn_scope *parent;
- struct lookup visible;
-};
-
struct lyn {
- struct lyn_scope *root;
- struct lyn_scope *cur;
-
- struct lyn_value res;
+ FILE *output;
+ int depth;
};
typedef int (*lyn_call)(struct lyn *lyn, struct vec args);