aboutsummaryrefslogtreecommitdiffstats
path: root/src/treewalk/string_view.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/treewalk/string_view.h')
-rw-r--r--src/treewalk/string_view.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/treewalk/string_view.h b/src/treewalk/string_view.h
deleted file mode 100644
index 42273ab..0000000
--- a/src/treewalk/string_view.h
+++ /dev/null
@@ -1,21 +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, FILE *file);
20
21#endif // BDL_STRINGVIEW_H