aboutsummaryrefslogtreecommitdiff
path: root/lib/list.h
diff options
context:
space:
mode:
authorgabrielgio <gabrielgio@workstation.lan>2024-02-17 17:13:07 +0100
committergabrielgio <gabrielgio@workstation.lan>2024-02-17 17:13:07 +0100
commit0a2e62f57734f820cd20e151d1150342408552ed (patch)
treee1e9c786571bf1d856ba42c4c6cf014b008822c4 /lib/list.h
parent78b0ba12073b0940541d91a7568e8b7ada572848 (diff)
downloaddict-0a2e62f57734f820cd20e151d1150342408552ed.tar.gz
dict-0a2e62f57734f820cd20e151d1150342408552ed.tar.bz2
dict-0a2e62f57734f820cd20e151d1150342408552ed.zip
ref: Apply astyle --style=linux
Diffstat (limited to 'lib/list.h')
-rw-r--r--lib/list.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/list.h b/lib/list.h
index dd28722..18bc423 100644
--- a/lib/list.h
+++ b/lib/list.h
@@ -2,7 +2,8 @@
#include <stdlib.h>
#define LIST_SIZE_FACTOR 1.5
-struct list {
+struct list
+{
unsigned int size;
unsigned int allocated_size;
void** list;