00001
00002
00003
00004
00005
00006
00007
00008
00009 #include <stdio.h>
00010 #include <stdlib.h>
00011 #include <stdarg.h>
00012 #include "antiword.h"
00013
00014
00015
00016
00017
00018 void
00019 werr(int iFatal, const char *szFormat, ...)
00020 {
00021 va_list tArg;
00022
00023 va_start(tArg, szFormat);
00024 (void)vfprintf(stderr, szFormat, tArg);
00025 va_end(tArg);
00026 fprintf(stderr, "\n");
00027 switch (iFatal) {
00028 case 0:
00029 return;
00030 case 1:
00031 exit(EXIT_FAILURE);
00032 default:
00033 exit(iFatal);
00034 }
00035 }
00036
00037 void
00038 Hourglass_On(void)
00039 {
00040 }
00041
00042 void
00043 Hourglass_Off(void)
00044 {
00045 }