Archiviert
1
0
Dieses Repository ist archiviert. Du kannst Dateien ansehen und es klonen, kannst aber nicht pushen oder Issues/Pull-Requests öffnen.
tv44led_example/tmk_core/common/mbed/xprintf.h
di0ib 87e7029039 Upload
Initial upload
2016-07-08 09:13:28 -10:00

18 Zeilen
229 B
C

#ifndef XPRINTF_H
#define XPRINTF_H
//#define xprintf(format, ...) __xprintf(format, ##__VA_ARGS__)
#ifdef __cplusplus
extern "C" {
#endif
int xprintf(const char *format, ...);
#ifdef __cplusplus
}
#endif
#endif