From 5fac283e3f4fae867b8429174d26078a090d2e0d Mon Sep 17 00:00:00 2001 From: LAN-TW Date: Sat, 7 Dec 2013 19:44:12 +0800 Subject: Change all tabs to spaces and add vim modeline --- l4array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'l4array.h') diff --git a/l4array.h b/l4array.h index d3e74ee..73fc884 100644 --- a/l4array.h +++ b/l4array.h @@ -7,12 +7,12 @@ typedef struct LbsArrayStruct { /*< public >*/ void* data; /* data */ - size_t len; /* current length */ void (*free_func) (void* data); /* function to free the element */ /*< private >*/ size_t size; /* element size */ + size_t len; /* current length */ size_t max; /* maximal length */ unsigned ref_count; /* reference count */ bool is_alloc; /* is allocated using malloc */ -- cgit