aboutsummaryrefslogtreecommitdiff
path: root/importer/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'importer/main.c')
-rw-r--r--importer/main.c31
1 files changed, 16 insertions, 15 deletions
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);
}