2 * Prints error to stdout along with error number and string desc of problem.
3 * Exits program without recourse.
5 void exit_error(const int err_num
, const char *err_msg
);
8 * Display Warnings about assembler status as needed.
10 * These are messages to the user that contain both an error number
11 * as well as simple description of what went wrong.
13 * Error number corresponds to number listed in documentation.
16 void warning_error(const int err_num
, const char *err_msg
);
19 * Prints line number that error/warning occured for user.
21 void line_notification(const int line_num
);