Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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