aboutsummaryrefslogtreecommitdiff
path: root/teensy/teensy_list.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-12 16:41:37 -0400
committeriamcheeseman <[email protected]>2026-05-12 16:41:37 -0400
commit897a153d290ed4d3647ad9e0100d1b717f580b5f (patch)
tree844dee0b3b2b7d869cd8e1ba27ffb403e8d51d99 /teensy/teensy_list.c
parentc1dd3ce9850fb2906aa5937b4374d1c0fc74ccf7 (diff)
typedef all structs and rename to Ada_Case
There isn't really a technical reason that I made this change. I just wanted to use Ada_Case. All types were prefixed with ty_, e.g. ty_Image.
Diffstat (limited to 'teensy/teensy_list.c')
-rw-r--r--teensy/teensy_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/teensy_list.c b/teensy/teensy_list.c
index 342af61..76de21a 100644
--- a/teensy/teensy_list.c
+++ b/teensy/teensy_list.c
@@ -5,7 +5,7 @@
void *ty_list_create(void)
{
- struct ty_list_header *header = ty_new(struct ty_list_header);
+ ty_List_Header *header = ty_new(ty_List_Header);
header->cap = 0;
header->len = 0;
return (void*)(header + 1);