File: log.h

package info (click to toggle)
epic5 3.0.3-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 5,328 kB
  • sloc: ansic: 75,810; makefile: 648; ruby: 227; python: 215; sh: 78; perl: 13
file content (24 lines) | stat: -rw-r--r-- 661 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * log.h: header for log.c 
 *
 * Copyright 1990 Michael Sandrof
 * Copyright 1997 EPIC Software Labs
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
 */

#ifndef __log_h__
#define __log_h__

extern	int	current_log_refnum;

	FILE	*do_log 	(int, const char *, FILE **);
	void	logger 		(void *);
	void	set_logfile 	(void *);
	void	add_to_log 	(int, FILE *, long, const char *, int, const char *);
	BUILT_IN_COMMAND(logcmd);
	void	add_to_logs	(long, int, const char *, int, const char *);
	char *	logctl		(char *);
	void    logfiles_swap_windows (int oldref, int newref);
	void    logfiles_merge_windows (int oldref, int newref);

#endif /* _LOG_H_ */