This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
2018-10-03 21:52:11 +02:00
|
|
|
#ifndef __IPC_LOGGER_H__
|
|
|
|
#define __IPC_LOGGER_H__
|
2017-08-26 19:42:54 +02:00
|
|
|
|
|
|
|
#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
|