err.c - error functions
Version Tag $Id: err.c,v 1.21 2006/02/06 19:55:46 db60 Exp $
void crash(const char *fmt, ...);
Prints a message consisting of 'FATAL ERROR: ' followed by a
user-supplied, vfprintf-acceptable message. Then calls cleanup()
and exits abnormally.
Pointer to the first character in a format string acceptable to
vfprintf().
Any parameters whose presence is dictated by fmt.
void scream(const char *format, ...);
Prints a message consisting of 'ERROR: ' followed by a user-supplied,
vfprintf-acceptable message.
Pointer to the first character in a format string acceptable to
vfprintf().
Any parameters whose presence is dictated by format.