blob: 36eb02ec573ade069f6b33dbff298fd2a817359d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef log_h
#define log_h
#include "config.h"
////////////////////////////////////////////////////////////////////////
//
// Log file support is too lame to be encapsulate. Just two function
// calls will do.
//
////////////////////////////////////////////////////////////////////////
void log(const char *mailbox, int status, class FormatMbox &);
void log_line(const class Buffer &);
#endif
|