Keyboard firmwares for Atmel AVR and Cortex-M
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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