diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-09 18:22:12 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-09 18:22:12 -0500 |
| commit | 2b83ab279dbfb77cfd699d6da944c51c2353e64a (patch) | |
| tree | 820f23b5c418e9d501a9fecf4fc84d2e26158cb2 /builtins/text.h | |
| parent | 1b8f7307a9c9cef191f6277cea5f2d11ef0a5788 (diff) | |
Add langs to the language
Diffstat (limited to 'builtins/text.h')
| -rw-r--r-- | builtins/text.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/builtins/text.h b/builtins/text.h index f2fc47cd..4c206cbb 100644 --- a/builtins/text.h +++ b/builtins/text.h @@ -16,9 +16,9 @@ typedef struct { CORD Text__as_text(const void *str, bool colorize, const TypeInfo *info); CORD Text__quoted(CORD str, bool colorize); -int Text__compare(CORD *x, CORD *y); -bool Text__equal(CORD *x, CORD *y); -uint32_t Text__hash(CORD *cord); +int Text__compare(const CORD *x, const CORD *y); +bool Text__equal(const CORD *x, const CORD *y); +uint32_t Text__hash(const CORD *cord); CORD Text__upper(CORD str); CORD Text__lower(CORD str); CORD Text__title(CORD str); |
