Merge branch '207_minor_regex_fixes' into mc-4.6
[midnight-commander.git] / src / logging.h
blob6ab8f941d2c602437dae0262a81d821220b15004
1 #ifndef MC_LOGGING_H
2 #define MC_LOGGING_H
4 /*
5 This file provides an easy-to-use function for writing all kinds of
6 events into a central log file that can be used for debugging.
7 */
9 extern void mc_log(const char *, ...)
10 __attribute__((__format__(__printf__,1,2)));
12 #endif