commit 1b0e5a12a4edca37eb18e33c2559ee4ce56e537c
parent 855793b8f71aa689947e2a57769e3c96fcafe115
Author: Martin J. Klöckner <64109770+klewer-martin@users.noreply.github.com>
Date: Tue, 9 Feb 2021 02:54:08 -0300
Merge branch 'alpha' into beta
Diffstat:
2 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/main.c b/main.c
@@ -53,11 +53,10 @@ int main(int argc, char * argv[])
print_error(st);
return st;
}
-
-// Carga los codigos de error de los paises de acuerdo al standard iso3166 en
-// el arreglo mencionado previamente 'country_codes', en caso de haber algun
-// error en el proceso devuelve dicho codigo e impreme por stderr un mensaje
-// de error;
+
+// Carga los codigos de error de los paises de acuerdo al standard iso3166 en el
+// arreglo mencionado previamente 'country_codes', en caso de haber algun error
+// en el proceso devuelve dicho codigo e impreme por stderr un mensaje de error;
if((st = load_country_codes(country_codes)) != OK) {
print_error(st);
return ERROR_LOADING_COUNTRY_CODES;
@@ -100,3 +99,5 @@ void close_files(FILE *fpi, FILE *fpo)
fclose(fpi);
fclose(fpo);
}
+
+
diff --git a/perrors.h b/perrors.h
@@ -3,8 +3,6 @@
#include "main.h"
-void print_error(status_t error);
-
#define MSG_ERROR_NULL_POINTER "ERROR_NULL_POINTER\n"\
"An unexpected error has occured during the execution\n"\
"of the program"
@@ -39,4 +37,8 @@ void print_error(status_t error);
#define MSG_OK "\nEverything executed correctly.\n"
+
+void print_error(status_t error);
+
+
#endif