9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
commit 43888e070ce0d83cb1e1f9c58e8537f4c756e31d
parent 24062ac11b905e7c8647bb34af824df9a0420acf
Author: klewer-martin <martin.cachari@gmail.com>
Date:   Sat,  6 Feb 2021 23:55:19 -0300

Update on perrors.h;

Diffstat:
Mperrors.h | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)
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