blob: 0cdc23de3112e09eb2d7b098ac0ca95da7b25e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*! @file ino-logging.h */
#ifndef INO_LOGGING_H
#define INO_LOGGING_H
#ifdef __cplusplus
extern "C" {
#endif
void inoLog_serial(const char* msg);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* INO_LOGGING_H */
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|