diff options
| author | Albert Cervin <albert@acervin.com> | 2024-03-18 22:07:36 +0100 |
|---|---|---|
| committer | Albert Cervin <albert@acervin.com> | 2024-03-18 22:12:01 +0100 |
| commit | 1558a1b36b15eb9bde28e05beea43b619e6257c6 (patch) | |
| tree | cf17929449567278cd8487ecf2aff648122c5685 /src/dged/s8.h | |
| parent | eabf7f9a958026c073faecf7504cbd8bb484a6c1 (diff) | |
| download | dged-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.h | 2 |
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 |
