We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3280d8 commit 8ee43e2Copy full SHA for 8ee43e2
lib/utils/printf.c
@@ -35,6 +35,13 @@
35
#include "py/formatfloat.h"
36
#endif
37
38
+int printf(const char *fmt, ...);
39
+int vprintf(const char *fmt, va_list ap);
40
+int putchar(int c);
41
+int puts(const char *s);
42
+int vsnprintf(char *str, size_t size, const char *fmt, va_list ap);
43
+int snprintf(char *str, size_t size, const char *fmt, ...);
44
+
45
int printf(const char *fmt, ...) {
46
va_list ap;
47
va_start(ap, fmt);
0 commit comments