Change text output format again
[flog.git] / flog_stdio.h
blob1528a857f943f26da01fb1e92acc27bda1322ea1
1 /*!
2 @file flog_stdio.h
3 @brief stdio output for Flog
4 @author Nabeel Sowan (nabeel.sowan@vibes.se)
6 When you want flog to write to a stdout or stderr
7 */
9 #ifndef FLOG_STDIO_H
10 #define FLOG_STDIO_H
12 #include "flog.h"
14 int flog_output_stdout(FLOG_T *log,const FLOG_MSG_T *msg);
15 int flog_output_stderr(FLOG_T *log,const FLOG_MSG_T *msg);
17 #endif