diff options
author | Francois Perrad <francois.perrad@gadz.org> | 2016-01-01 15:02:09 +0100 |
---|---|---|
committer | Francois Perrad <francois.perrad@gadz.org> | 2016-01-01 15:02:09 +0100 |
commit | 9bda22e70219c3056c07837803d0289b76453adb (patch) | |
tree | 0da32b7188892b1faea5fb1a6a3d97f587a8b54e /list.h | |
parent | 23ac7f56fa2acd9f35e6b8ca36602f3c14e986cd (diff) |
more hard tab
Diffstat (limited to 'list.h')
-rw-r--r-- | list.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -4,17 +4,17 @@ struct _m_list; struct _m_list_elem { - void *item; + void *item; struct _m_list_elem *next; struct _m_list_elem *prev; - struct _m_list *list; + struct _m_list *list; }; typedef struct _m_list_elem m_list_elem; struct _m_list { - m_list_elem *first; - m_list_elem *last; + m_list_elem *first; + m_list_elem *last; }; typedef struct _m_list m_list; |