File: errors.h

package info (click to toggle)
netmask 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,328 kB
  • sloc: sh: 5,181; ansic: 876; makefile: 22
file content (45 lines) | stat: -rw-r--r-- 1,622 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* errors.h -- error message handlers.
   Copyright (C) 1998 Robert Stone <talby@trap.mtview.ca.us>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */

#ifndef _HAVE_ERRORS_H
#define _HAVE_ERRORS_H

/* call initerrors before using these other functions
 *
 * these functions seem pretty straightforward to me, the messaging
 * functions take sprintf formatted strings and have a limit of
 * 1024 byte long error messages.
 *	progname should be set to argv[0]
 *	if progname is NULL, it is unchanged
 *	type == 0 for stderr
 *	type == 1 for syslog
 *	otherwise type is unchanged
 *	stat == 0 to skip status reporting
 *	stat == 1 to print status messages
 *	otherwise stat is unchanged
 *	defaults: progname = NULL, type = 0, stat = 0 */
int initerrors(char *progname, int type, int stat);

int status(const char *fmt, ...);
	/* print a status message */

int warn(const char *fmt, ...);
	/* print a warning message */

int panic(const char *fmt, ...);
	/* print an error and exit */
#endif