Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
uPython-mirror
Commits
8ee43e24
Commit
8ee43e24
authored
Nov 22, 2015
by
Paul Sokolovsky
Browse files
lib/utils/printf: Add extra prototypes.
parent
c3280d83
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/utils/printf.c
View file @
8ee43e24
...
...
@@ -35,6 +35,13 @@
#include
"py/formatfloat.h"
#endif
int
printf
(
const
char
*
fmt
,
...);
int
vprintf
(
const
char
*
fmt
,
va_list
ap
);
int
putchar
(
int
c
);
int
puts
(
const
char
*
s
);
int
vsnprintf
(
char
*
str
,
size_t
size
,
const
char
*
fmt
,
va_list
ap
);
int
snprintf
(
char
*
str
,
size_t
size
,
const
char
*
fmt
,
...);
int
printf
(
const
char
*
fmt
,
...)
{
va_list
ap
;
va_start
(
ap
,
fmt
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment