home *** CD-ROM | disk | FTP | other *** search
- LISTING 8 - Builds a variable format string by passing a va_list to vfprintf
- /* fatal.c: Exit program with an error message */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <string.h>
-
- void fatal(char *fmt, ...)
- {
- va_list args;
-
- if (strlen(fmt) > 0)
- {
- va_start(args,fmt);
- vfprintf(stderr,fmt,args);
- va_end(args);
- }
- exit(1);
- }
-