From 04d9adc8138566eec5d6bf7b233a6c617306bcce Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 29 Mar 2024 12:54:31 -0400 Subject: Switch naming convention to use '$' in symbols more --- builtins/pointer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'builtins/pointer.h') diff --git a/builtins/pointer.h b/builtins/pointer.h index edaaaa21..e5705d20 100644 --- a/builtins/pointer.h +++ b/builtins/pointer.h @@ -8,10 +8,10 @@ #include "types.h" -CORD Pointer__as_text(const void *x, bool colorize, const TypeInfo *type); -int32_t Pointer__compare(const void *x, const void *y, const TypeInfo *type); -bool Pointer__equal(const void *x, const void *y, const TypeInfo *type); -uint32_t Pointer__hash(const void *x, const TypeInfo *type); +CORD Pointer$as_text(const void *x, bool colorize, const TypeInfo *type); +int32_t Pointer$compare(const void *x, const void *y, const TypeInfo *type); +bool Pointer$equal(const void *x, const void *y, const TypeInfo *type); +uint32_t Pointer$hash(const void *x, const TypeInfo *type); #define $Null(t) (t*)NULL #define POINTER_TYPE(_sigil, _pointed) (&(TypeInfo){\ -- cgit v1.2.3