Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/include/log.h
1069 views
1
/*
2
* log.h: header for log.c
3
*
4
* Written By Michael Sandrof
5
*
6
* Copyright(c) 1990
7
*
8
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
9
*
10
* @(#)$Id: log.h 3 2008-02-25 09:49:14Z keaston $
11
*/
12
13
#ifndef __log_h_
14
#define __log_h_
15
16
void do_log (int, char *, FILE **);
17
void logger (Window *, char *, int);
18
void set_log_file (Window *, char *, int);
19
void BX_add_to_log (FILE *, time_t, const char *, int mangler);
20
21
22
#endif /* __log_h_ */
23
24