1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #ifndef CHPRINTF_H
- #define CHPRINTF_H
- #include <stdarg.h>
- #if !defined(CHPRINTF_USE_FLOAT) || defined(__DOXYGEN__)
- #define CHPRINTF_USE_FLOAT FALSE
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- int chvprintf(BaseSequentialStream *chp, const char *fmt, va_list ap);
- int chprintf(BaseSequentialStream *chp, const char *fmt, ...);
- int chsnprintf(char *str, size_t size, const char *fmt, ...);
- int chvsnprintf(char *str, size_t size, const char *fmt, va_list ap);
- #ifdef __cplusplus
- }
- #endif
- #endif
|