aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/functiontype.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-17 20:35:09 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-17 20:35:09 -0400
commitf4e38fd061a158ecb94881273c6db6e6a332f61d (patch)
tree9179cb312dcc1b24d806dfb65694c25580d1ed8b /src/stdlib/functiontype.c
parent602cedd03b0c3d6ef176efafb08f51bde9bfe543 (diff)
Switch from using dollar signs as namespace delimiters to using 々, ヽ, andunicode-identifiers
〇.
Diffstat (limited to 'src/stdlib/functiontype.c')
-rw-r--r--src/stdlib/functiontype.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stdlib/functiontype.c b/src/stdlib/functiontype.c
index b0fff1a7..ef7b7b5b 100644
--- a/src/stdlib/functiontype.c
+++ b/src/stdlib/functiontype.c
@@ -11,15 +11,15 @@
#include "types.h"
#include "util.h"
-public Text_t Func$as_text(const void *fn, bool colorize, const TypeInfo_t *type)
+public Text_t Funcヽas_text(const void *fn, bool colorize, const TypeInfo_t *type)
{
- Text_t text = Text$from_str(type->FunctionInfo.type_str);
+ Text_t text = Textヽfrom_str(type->FunctionInfo.type_str);
if (fn && colorize)
- text = Text$concat(Text("\x1b[32;1m"), text, Text("\x1b[m"));
+ text = Textヽconcat(Text("\x1b[32;1m"), text, Text("\x1b[m"));
return text;
}
-public PUREFUNC bool Func$is_none(const void *obj, const TypeInfo_t *info)
+public PUREFUNC bool Funcヽis_none(const void *obj, const TypeInfo_t *info)
{
(void)info;
return *(void**)obj == NULL;