renamed directory

This commit is contained in:
Markus Fröschle
2012-11-16 18:57:09 +00:00
parent 707cf601aa
commit b9c88021c6
81 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef _BAS_PRINTF_H_
#define _BAS_PRINTF_H_
#include <stdarg.h>
typedef uint32_t size_t;
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, ...);
extern void display_progress(void);
#endif /* _BAS_PRINTF_H_ */