]> git.zerfleddert.de Git - proxmark3-svn/blob - armsrc/printf.h
Clean up data types, some header cleanup, etc.
[proxmark3-svn] / armsrc / printf.h
1 #ifndef __PRINTF_H
2 #define __PRINTF_H
3
4 #include <stdarg.h>
5
6 int kvsprintf(const char *format, void *arg, int radix, va_list ap) __attribute__ ((format (printf, 1, 0)));
7 int vsprintf(char *str, const char *format, va_list ap) __attribute__ ((format (printf, 2, 0)));
8 int sprintf(char *str, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
9
10
11
12 #endif
Impressum, Datenschutz