aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/c_strings.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-10-18 19:02:07 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-10-18 19:02:07 -0400
commit5bdf96234a388cbd3854747b0667620ebb60ccdf (patch)
treee4ab4055e0190f4a080b69fcd933cd8ca6146260 /src/stdlib/c_strings.h
parent82e3c05d547b2372ca4033c68469479260092b5a (diff)
Improved CLI parsing and add CString.join()
Diffstat (limited to 'src/stdlib/c_strings.h')
-rw-r--r--src/stdlib/c_strings.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stdlib/c_strings.h b/src/stdlib/c_strings.h
index f85fa0d6..eba3a3df 100644
--- a/src/stdlib/c_strings.h
+++ b/src/stdlib/c_strings.h
@@ -12,5 +12,6 @@ Text_t CString$as_text(const char **str, bool colorize, const TypeInfo_t *info);
PUREFUNC int CString$compare(const void *x, const void *y, const TypeInfo_t *type);
PUREFUNC bool CString$equal(const void *x, const void *y, const TypeInfo_t *type);
PUREFUNC uint64_t CString$hash(const void *str, const TypeInfo_t *type);
+const char *CString$join(const char *glue, List_t strings);
extern const TypeInfo_t CString$info;