Ticket #44: More functionally u7z.
[midnight-commander.git] / src / logging.h
bloba9d9dbdde58c41ccc20aeac04c181d87e77676dd
2 /** \file logging.h
3 * \brief Header: provides a log file to ease tracing the program
4 */
6 #ifndef MC_LOGGING_H
7 #define MC_LOGGING_H
9 /*
10 This file provides an easy-to-use function for writing all kinds of
11 events into a central log file that can be used for debugging.
14 extern void mc_log(const char *, ...)
15 __attribute__((__format__(__printf__,1,2)));
17 #endif