diff options
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); |