blob: 614809267f78cac844b98127a2d4d10fb46aa0da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*! @file emb-logging.h */
#ifndef EMB_LOGGING_H
#define EMB_LOGGING_H
#include "api-start.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef ARDUINO
#include "utility/ino-logging.h"
#endif
extern EMB_PUBLIC void EMB_CALL embLog_print(const char* format, ...);
extern EMB_PUBLIC void EMB_CALL embLog_error(const char* format, ...);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#include "api-stop.h"
#endif /* EMB_LOGGING_H */
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|