7 void __attribute__ ((format (printf, 1, 2))) pb_log(const char *fmt, ...);
8 void __attribute__ ((format (printf, 1, 2))) pb_debug(const char *fmt, ...);
10 void __pb_log_init(FILE *stream, bool debug);
13 #define pb_log_init(s) __pb_log_init(s, true)
15 #define pb_log_init(s) __pb_log_init(s, false)
18 void pb_log_set_debug(bool debug);
19 FILE *pb_log_get_stream(void);