summaryrefslogtreecommitdiff
path: root/src/dged/s8.h
diff options
context:
space:
mode:
authorAlbert Cervin <albert@acervin.com>2024-03-18 22:07:36 +0100
committerAlbert Cervin <albert@acervin.com>2024-03-18 22:12:01 +0100
commit1558a1b36b15eb9bde28e05beea43b619e6257c6 (patch)
treecf17929449567278cd8487ecf2aff648122c5685 /src/dged/s8.h
parenteabf7f9a958026c073faecf7504cbd8bb484a6c1 (diff)
downloaddged-1558a1b36b15eb9bde28e05beea43b619e6257c6.tar.gz
dged-1558a1b36b15eb9bde28e05beea43b619e6257c6.tar.xz
dged-1558a1b36b15eb9bde28e05beea43b619e6257c6.zip
More work on languages/syntax
Implement another predicate and add javascript.
Diffstat (limited to 'src/dged/s8.h')
-rw-r--r--src/dged/s8.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dged/s8.h b/src/dged/s8.h
index 955a642..76bcc34 100644
--- a/src/dged/s8.h
+++ b/src/dged/s8.h
@@ -14,5 +14,7 @@ struct s8 {
bool s8eq(struct s8 s1, struct s8 s2);
int s8cmp(struct s8 s1, struct s8 s2);
char *s8tocstr(struct s8 s);
+bool s8startswith(struct s8 s, struct s8 prefix);
+struct s8 s8dup(struct s8 s);
#endif