aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode/string_view.h
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2022-02-01 18:36:52 +0100
committerBad Diode <bd@badd10de.dev>2022-02-01 18:36:52 +0100
commitee1a5de91c875fb66724dc21c02333bfebe2a812 (patch)
treed3eaa226816d295bb9dc48a2aed27044832ec413 /src/bytecode/string_view.h
parent3156265c7b2da8cc43fee996c0518ea274d39c8a (diff)
downloadbdl-ee1a5de91c875fb66724dc21c02333bfebe2a812.tar.gz
bdl-ee1a5de91c875fb66724dc21c02333bfebe2a812.zip
Add new syntax to lexer and prepare refactor
Diffstat (limited to 'src/bytecode/string_view.h')
-rwxr-xr-xsrc/bytecode/string_view.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/bytecode/string_view.h b/src/bytecode/string_view.h
deleted file mode 100755
index 5977ea9..0000000
--- a/src/bytecode/string_view.h
+++ /dev/null
@@ -1,23 +0,0 @@
1#ifndef BDL_STRINGVIEW_H
2#define BDL_STRINGVIEW_H
3
4typedef struct StringView {
5 char *start;
6 size_t n;
7} StringView;
8
9// Consume a character in the stream.
10char sv_next(StringView *sv);
11
12// Check what is the current character in the stream.
13char sv_peek(const StringView *sv);
14
15// Compare if the arguments are the same.
16bool sv_equal(const StringView *a, const StringView *b);
17
18// Write a character to the given output stream.
19void sv_write(const StringView *sv);
20
21#define STRING(STR) (StringView){(STR), sizeof(STR) - 1}
22
23#endif // BDL_STRINGVIEW_H