diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-29 12:54:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-29 12:54:31 -0400 |
| commit | 04d9adc8138566eec5d6bf7b233a6c617306bcce (patch) | |
| tree | 8414c07e92cdd17613190cd6a8e179b2eed2f00c /builtins/pointer.h | |
| parent | d94053ca7768037016cbcacc4cadf843dad1bea6 (diff) | |
Switch naming convention to use '$' in symbols more
Diffstat (limited to 'builtins/pointer.h')
| -rw-r--r-- | builtins/pointer.h | 8 |
1 files changed, 4 insertions, 4 deletions
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){\ |
