Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/core/logger.h

16 lines
317 B
C
Raw Normal View History

#ifndef __LOGGER_H__
#define __LOGGER_H__
#define LOG
#include <stdarg.h>
void log_error (const char* message, ...);
void log_info (const char* message, ...);
void log_debug (const char* message, ...);
// please use previous functions
void log_format (const char* tag, const char* message, va_list args);
#endif