#ifndef RPROXY_LOGGING_H #define RPROXY_LOGGING_H void log_error(const char *msg); void log_info(const char *format, ...); void log_debug(const char *format, ...); void logging_set_debug(int enabled); int logging_get_debug(void); #endif