9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
commit 86a18e74fa929ff31b105a4efbdf05d2ee35a7ea
parent bbb78de90a709afdf5abf82a5ce5fbbb9c0d477a
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Tue,  9 Feb 2021 17:36:52 -0300

Merge branch 'beta' of github.com:klewer-martin/9511_project01 into beta
Merge neccesary to update local files;

Diffstat:
Mmain.c | 11++++++-----
Mperrors.h | 6++++--
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