labwc/include/common/log.h
2020-08-12 19:37:44 +01:00

14 lines
209 B
C

#ifndef __LABWC_LOG_H
#define __LABWC_LOG_H
/**
* info - print info message
*/
void info(const char *msg, ...);
/**
* warn - print warning
*/
void warn(const char *err, ...);
#endif /* __LABWC_LOG_H */