Skip to content
Snippets Groups Projects
Commit 26ade897 authored by Alessandro Rubini's avatar Alessandro Rubini
Browse files

trivial: add pp_sprintf prototype


Signed-off-by: default avatarAlessandro Rubini <rubini@gnudd.com>
parent 70d8dbec
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@ extern int pp_printf(const char *fmt, ...)
__attribute__((format(printf, 1, 2)));
extern int pp_vprintf(const char *fmt, va_list args)
__attribute__((format(printf, 1, 0)));
extern int pp_sprintf(char *s, const char *fmt, ...)
__attribute__((format(printf,2,3)));
extern int pp_vsprintf(char *buf, const char *, va_list)
__attribute__ ((format (printf, 2, 0)));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment