From bc032de1dfc8ad03ed7d6ab0471140f393c74532 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 9 Sep 2024 04:42:36 -0400 Subject: Add Text$compare_values() --- builtins/text.h | 1 + 1 file changed, 1 insertion(+) (limited to 'builtins/text.h') diff --git a/builtins/text.h b/builtins/text.h index a9fbf1a1..7f4861a3 100644 --- a/builtins/text.h +++ b/builtins/text.h @@ -27,6 +27,7 @@ Text_t Text$from_strn(const char *str, size_t len); PUREFUNC uint64_t Text$hash(Text_t *text); PUREFUNC int32_t Text$compare(const Text_t *a, const Text_t *b); PUREFUNC bool Text$equal(const Text_t *a, const Text_t *b); +PUREFUNC bool Text$equal_values(Text_t a, Text_t b); PUREFUNC bool Text$equal_ignoring_case(Text_t a, Text_t b); Text_t Text$upper(Text_t text); Text_t Text$lower(Text_t text); -- cgit v1.2.3