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 --- importer/main.c | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) (limited to 'importer') diff --git a/importer/main.c b/importer/main.c index d037745..b83e850 100644 --- a/importer/main.c +++ b/importer/main.c @@ -7,28 +7,28 @@ int run(const char *db, const char *txt); -int main(int argc, char** argv) { +int main(int argc, char** argv) +{ int opt; char* txt = NULL; char* db = NULL; while ((opt = getopt(argc, argv, "t:d:h")) != -1) { switch(opt) { - case 't': - txt = copy_achar(optarg); - break; - case 'd': - db = copy_achar(optarg); - break; - case 'h': - // fall through - default: - printf("Usage: %s", argv[0]); - goto end; + case 't': + txt = copy_achar(optarg); + break; + case 'd': + db = copy_achar(optarg); + break; + case 'h': + // fall through + default: + printf("Usage: %s", argv[0]); + goto end; } } - int r = run(db, txt); end: @@ -40,7 +40,8 @@ end: return r; } -int run(const char *db, const char *txt) { +int run(const char *db, const char *txt) +{ char * line = NULL; size_t len = 0; int count = 0; @@ -66,7 +67,7 @@ int run(const char *db, const char *txt) { insert(data, line, read-1); count++; - if ((count % 321) == 0){ + if ((count % 321) == 0) { float t = ((float)count/(float)total)*100; printf("\rLoading data [%03.0f%%] %d/%d", t, count, total); } -- cgit v1.2.3