summaryrefslogtreecommitdiffstats
path: root/bstr.h
diff options
context:
space:
mode:
Diffstat (limited to 'bstr.h')
-rw-r--r--bstr.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/bstr.h b/bstr.h
index 15ddf314f3..e8a34b4f2c 100644
--- a/bstr.h
+++ b/bstr.h
@@ -88,6 +88,9 @@ int bstr_parse_utf8_code_length(unsigned char b);
// line breaks are stripped.
struct bstr bstr_getline(struct bstr str, struct bstr *rest);
+// If s starts with prefix, return true and return the rest of the string in s.
+bool bstr_eatstart(struct bstr *s, struct bstr prefix);
+
bool bstr_case_startswith(struct bstr s, struct bstr prefix);
bool bstr_case_endswith(struct bstr s, struct bstr suffix);
struct bstr bstr_strip_ext(struct bstr str);