error.h
/**********************************error.h*************************************
Function: error_msg_fatal()
Input : formatted string and arguments.
Output: conversion printed to stdout.
Description: prints error message and terminates program.
Usage: error_msg_fatal("this is my %d'st test",test_num)
**********************************error.h*************************************/
void error_msg_fatal(char *msg, ...);
/**********************************error.h*************************************
Function: error_msg_warning()
Input : formatted string and arguments.
Output: conversion printed to stdout.
Description: prints error message.
Usage: error_msg_warning("this is my %d'st test",test_num)
**********************************error.h*************************************/
void error_msg_warning(char *msg, ...);