Keyboard firmwares for Atmel AVR and Cortex-M
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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