aboutsummaryrefslogtreecommitdiff
path: root/stdlib/bytes.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-30 14:39:30 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-30 14:39:30 -0400
commit1a6ce0047bbc5125c386f65ae348688f98a9bb3f (patch)
treeee56e2b3535ddcbc36fab5240d804d95f7744b5f /stdlib/bytes.h
parent2ba07c2cf53a765d4decb2cb09dbf5e1e99f1966 (diff)
Rename TypeInfo -> TypeInfo_t and fix up some typeinfo code
Diffstat (limited to 'stdlib/bytes.h')
-rw-r--r--stdlib/bytes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/bytes.h b/stdlib/bytes.h
index d74ab80c..62b266e7 100644
--- a/stdlib/bytes.h
+++ b/stdlib/bytes.h
@@ -11,13 +11,13 @@
#define Byte_t uint8_t
#define Byte(b) ((Byte_t)(b))
-PUREFUNC Text_t Byte$as_text(const Byte_t *b, bool colorize, const TypeInfo *type);
+PUREFUNC Text_t Byte$as_text(const Byte_t *b, bool colorize, const TypeInfo_t *type);
Byte_t Byte$random(Byte_t min, Byte_t max);
extern const Byte_t Byte$min;
extern const Byte_t Byte$max;
-extern const TypeInfo Byte$info;
+extern const TypeInfo_t Byte$info;
typedef struct {
Byte_t value;