aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/text.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-31 02:33:23 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-31 02:33:23 -0400
commit54e65e2f1c944a861a823641ef1b8fe194c7b0d8 (patch)
tree3ded7ce508fb94313974895ca8d75ec95e9fc3c8 /src/stdlib/text.h
parentda94f2bc8ceadcec014d8e5b4819f96ab34fecfb (diff)
Fully move all pattern code into patterns.c
Diffstat (limited to 'src/stdlib/text.h')
-rw-r--r--src/stdlib/text.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/text.h b/src/stdlib/text.h
index e5c6a14f..4acca8a2 100644
--- a/src/stdlib/text.h
+++ b/src/stdlib/text.h
@@ -47,7 +47,7 @@ Text_t Text$upper(Text_t text, Text_t language);
Text_t Text$lower(Text_t text, Text_t language);
Text_t Text$title(Text_t text, Text_t language);
Text_t Text$as_text(const void *text, bool colorize, const TypeInfo_t *info);
-Text_t Text$quoted(Text_t str, bool colorize);
+Text_t Text$quoted(Text_t str, bool colorize, Text_t quotation_mark);
PUREFUNC bool Text$starts_with(Text_t text, Text_t prefix);
PUREFUNC bool Text$ends_with(Text_t text, Text_t suffix);
char *Text$as_c_string(Text_t text);