2 * Window Maker miscelaneous function library
4 * Copyright (c) 1997 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "../src/config.h"
30 extern char *_WINGS_progname
;
36 /*********************************************************************
37 * Returns the system error message associated with error code 'errnum'
38 *********************************************************************/
42 #if defined(HAVE_STRERROR)
43 return strerror(errnum
);
44 #elif !defined(HAVE_STRERROR) && defined(BSD)
45 extern int errno
, sys_nerr
;
47 extern char *sys_errlist
[];
49 static char buf
[] = "Unknown error 12345678901234567890";
52 return sys_errlist
[errnum
];
54 sprintf (buf
, "Unknown error %d", errnum
);
56 #else /* no strerror() and no sys_errlist[] */
57 static char buf
[] = "Error 12345678901234567890";
59 sprintf(buf
, "Error %d", errnum
);
65 /**************************************************************************
66 * Prints a fatal error message with variable arguments and terminates
68 * msg - message to print with optional formatting
69 * ... - arguments to use on formatting
70 **************************************************************************/
72 wfatal(const char *msg
, ...)
79 vsprintf(buf
, msg
, args
);
82 fputs(_WINGS_progname
, stderr
);
83 fputs(" fatal error: ",stderr
);
92 /*********************************************************************
93 * Prints a warning message with variable arguments
95 * msg - message to print with optional formatting
96 * ... - arguments to use on formatting
97 *********************************************************************/
99 wwarning(const char *msg
, ...)
106 vsprintf(buf
, msg
, args
);
109 fputs(_WINGS_progname
, stderr
);
110 fputs(" warning: ",stderr
);
119 /*********************************************************************
120 * Prints a system error message with variable arguments
122 * msg - message to print with optional formatting
123 * ... - arguments to use on formatting
124 *********************************************************************/
126 wsyserror(const char *msg
, ...)
133 vsprintf(buf
, msg
, args
);
135 fputs(_WINGS_progname
, stderr
);
136 fputs(" error: ", stderr
);
138 strcat(buf
, wstrerror(error
));
147 /*********************************************************************
148 * Prints a system error message with variable arguments, being given
151 * error - the error code foe which to print the message
152 * msg - message to print with optional formatting
153 * ... - arguments to use on formatting
154 *********************************************************************/
156 wsyserrorwithcode(int error
, const char *msg
, ...)
162 vsprintf(buf
, msg
, args
);
164 fputs(_WINGS_progname
, stderr
);
165 fputs(" error: ", stderr
);
167 strcat(buf
, wstrerror(error
));