File: report.h

package info (click to toggle)
dhcp-probe 1.3.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,316 kB
  • sloc: sh: 4,783; ansic: 2,400; perl: 381; xml: 51; makefile: 50
file content (15 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef REPORT_H
#define REPORT_H

extern void report_init(int dont_fork, char *logfile_name);
extern char *get_errmsg(void);

#ifdef STDC_HEADERS
extern void report(int, char *, ...);
#else
extern void report(); 
#endif

void close_and_reopen_log_file(char * logfile_name);

#endif /* not REPORT_H */