Keyboard firmwares for Atmel AVR and Cortex-M
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

xprintf.h 229B

1234567891011121314151617
  1. #ifndef XPRINTF_H
  2. #define XPRINTF_H
  3. //#define xprintf(format, ...) __xprintf(format, ##__VA_ARGS__)
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. int xprintf(const char *format, ...);
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. #endif