]> git.zerfleddert.de Git - proxmark3-svn/blame - armsrc/printf.h
Removing windows specific code. Everything now compile and work the same for the...
[proxmark3-svn] / armsrc / printf.h
CommitLineData
f7e3ed82 1#ifndef __PRINTF_H
2#define __PRINTF_H
3
4#include <stdarg.h>
5
6int kvsprintf(const char *format, void *arg, int radix, va_list ap) __attribute__ ((format (printf, 1, 0)));
7int vsprintf(char *str, const char *format, va_list ap) __attribute__ ((format (printf, 2, 0)));
8int sprintf(char *str, const char *format, ...) __attribute__ ((format (printf, 2, 3)));
9
10
11
12#endif
Impressum, Datenschutz