commit a6e6a73ea1dc5c230aed96659e6b831f89029819
parent ac237f61261ad447bb1665df7a6341706083683e
Author: Martin J. Klöckner <64109770+klewer-martin@users.noreply.github.com>
Date: Sat, 6 Feb 2021 23:57:25 -0300
Merge pull request #5 from klewer-martin/alpha
Alpha
Diffstat:
3 files changed, 5 insertions(+), 38 deletions(-)
diff --git a/macros.h b/macros.h
@@ -10,39 +10,4 @@
#define INITIAL_SIZE 1000
-/*
-#define MSG_ERROR_NULL_POINTER "ERROR_NULL_POINTER\n"\
- "An unexpected error has occured during the execution\n"\
- "of the program"
-
-#define MSG_ERROR_INVOCATING_PROGRAM "\nERROR_INVOCATING_PROGRAM\n"\
- "Usage:\t$ ./main -in <input file> -out <outputfile>\n"\
- "\t$ ./main -out <output file -in <input file>\n"\
- "Read documentation to know more"
-
-#define MSG_IO_FILE_NOT_FOUND "\nIO_FILE_NOT_FOUND\n"\
- "Un de los archivos de entrada o salida no se ha especificado"\
-
-#define MSG_ERROR_LOADING_COUNTRY_CODES "\nERROR_LOADING_COUNTRY_CODES\n"\
- "Ha ocurrido un error al cargar los codigos de los paises.\n"\
- "compruebe que el archivo \""COUNTRY_CODES_FILE_NAME"\" se encuentre\n"\
- "disponible en el directorio de el programa ejecutado y que\n"\
- "el nombre coincida con el de \"COUNTRY_CODES_FILE_NAME\" dentro\n"\
- "de el archivo main.h\n"
-
-#define MSG_ERROR_PRINTING
-
-#define MSG_ERROR_READING_FILE "\nERROR_READING_FILE\n"\
- "El archivo de entrada no pudo ser leido, compruebe que el nombre este\n"\
- "escrito correctamente y la existencia de el mismo"
-
-#define MSG_ERROR_ALLOCATING_TIME "\nstrftime(3): el formato especificado "
-
-#define MSG_ERROR_DATA_ON_FILE_MISSING "\nERROR_DATA_ON_FILE_MISSING\n"\
- "En alguna linea de el archivo de entrada falta un dato,\n"\
- "compruebe que dicho archivo no esta corrupto y ejecute\n"\
- "el programa nuevamente"
-
-#define MSG_OK "\nEverything executed correctly.\n"
-*/
#endif
diff --git a/main.c b/main.c
@@ -44,7 +44,7 @@ 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;
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