blob: 6f44bea0d38ac1fd9bd543676757ce47af788a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _LOG_H
#define _LOG_H
#include <stdio.h>
void __attribute__ ((format (printf, 1, 2))) pb_log(const char *fmt, ...);
void pb_log_set_stream(FILE *stream);
FILE * pb_log_get_stream(void);
void pb_log_always_flush(int state);
#endif /* _LOG_H */
|