Keyboard firmwares for Atmel AVR and Cortex-M
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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