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
9 #include "flog_stdio.h"
13 int flog_output_stdout(FLOG_T
*log
__attribute__((__unused__
)),const FLOG_MSG_T
*msg
)
16 if((str
=flog_msg_t_to_str(msg
))==NULL
)
18 if(fprintf(stdout
,str
)<0) {
26 int flog_output_stderr(FLOG_T
*log
__attribute__((__unused__
)),const FLOG_MSG_T
*msg
)
29 if((str
=flog_msg_t_to_str(msg
))==NULL
)
31 if(fprintf(stderr
,str
)<0) {