diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-27 11:25:45 -0400 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-08-27 11:25:45 -0400 |
commit | 4cbb756c732ddea66d395923cc07c0d763024f97 (patch) | |
tree | 5c4affa9a7c58f7d4b8ea9a97fc326e115fb6645 /include/list.h | |
parent | fd7e478e475fccf9616998ccb62e91534e935ae5 (diff) |
format: indent to 4 spaces
Diffstat (limited to 'include/list.h')
-rw-r--r-- | include/list.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/list.h b/include/list.h index 2a3da57..2c39658 100644 --- a/include/list.h +++ b/include/list.h @@ -26,10 +26,10 @@ #define INCREMENT_BY 5 typedef struct { - size_t element_size; - size_t max; - size_t size; - uint8_t *elements; + size_t element_size; + size_t max; + size_t size; + uint8_t *elements; } list_t; list_t *list_create(size_t element_size); |