added free (BSD-source) tiny-printf to support better diagnostic messages
This commit is contained in:
9
include/printf.h
Normal file
9
include/printf.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef _PRINTF_H_
|
||||
#define _PRINTF_H_
|
||||
|
||||
extern void xvsnprintf(char *str, size_t size, const char *fmt, va_list va);
|
||||
extern void xvprintf(const char *fmt, va_list va);
|
||||
extern void xprintf(const char *fmt, ...);
|
||||
extern void xsnprintf(char *str, size_t size, const char *fmt, ...);
|
||||
|
||||
#endif /* _PRINTF_H_ */
|
||||
Reference in New Issue
Block a user