1#ifndef DEBUG_LOG_H
2#define DEBUG_LOG_H
3
4void debug_printf_to_log(const char *fmt, ...);
5void debug_print_to_log(const char *fmt, ...);
6void debug_print_log(void);
7unsigned int debug_print_log_to_buffer(char *buffer, int max_size);
8
9#endif
10