From 897a153d290ed4d3647ad9e0100d1b717f580b5f Mon Sep 17 00:00:00 2001 From: iamcheeseman Date: Tue, 12 May 2026 16:41:37 -0400 Subject: 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. --- teensy/teensy_list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'teensy/teensy_list.c') 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); -- cgit v1.3-2-g0d8e