From 0a2e62f57734f820cd20e151d1150342408552ed Mon Sep 17 00:00:00 2001 From: gabrielgio Date: Sat, 17 Feb 2024 17:13:07 +0100 Subject: ref: Apply astyle --style=linux --- lib/data.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/data.h') diff --git a/lib/data.h b/lib/data.h index 56edd34..fcde55a 100644 --- a/lib/data.h +++ b/lib/data.h @@ -5,7 +5,8 @@ /* * This word into the dictionary */ -typedef struct word { +typedef struct word +{ int Id; const unsigned char *Line; } Word; @@ -13,17 +14,16 @@ typedef struct word { /* * This is database connection. */ -typedef struct data { +typedef struct data +{ sqlite3 *db; } Data; - /* * create a new data struct from sqlite filename. */ Data* new_data(const char*); - void free_data(Data*); /* -- cgit v1.2.3