/* * logger.h * * Created on: Jul 4, 2021 * Author: Andreas Berthoud */ #ifndef INC_LOGGER_H_ #define INC_LOGGER_H_ void log_debug(const char * format, int nargs, ...); void log_info(const char * format, int nargs, ...); void log_warning(const char * format, int nargs, ...); void log_error(const char * format, int nargs, ...); #endif /* INC_LOGGER_H_ */