aboutsummaryrefslogtreecommitdiffstats
path: root/common/estream-printf.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/estream-printf.h')
-rw-r--r--common/estream-printf.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/common/estream-printf.h b/common/estream-printf.h
index 16e42490c..9b6b83810 100644
--- a/common/estream-printf.h
+++ b/common/estream-printf.h
@@ -60,7 +60,7 @@
/* To use this file with libraries the following macro is useful:
#define _ESTREAM_EXT_SYM_PREFIX _foo_
-
+
This prefixes all external symbols with "_foo_".
For the implementation of the code (estream-printf.c) the following
@@ -119,9 +119,9 @@ typedef int (*estream_printf_out_t)
(void *outfncarg, const char *buf, size_t buflen);
int estream_format (estream_printf_out_t outfnc, void *outfncarg,
- const char *format, va_list vaargs)
+ const char *format, va_list vaargs)
_ESTREAM_GCC_A_PRINTF(3,0);
-int estream_printf (const char *format, ...)
+int estream_printf (const char *format, ...)
_ESTREAM_GCC_A_PRINTF(1,2);
int estream_fprintf (FILE *fp, const char *format, ... )
_ESTREAM_GCC_A_PRINTF(2,3);
@@ -129,8 +129,8 @@ int estream_vfprintf (FILE *fp, const char *format, va_list arg_ptr)
_ESTREAM_GCC_A_PRINTF(2,0);
int estream_snprintf (char *buf, size_t bufsize, const char *format, ...)
_ESTREAM_GCC_A_PRINTF(3,4);
-int estream_vsnprintf (char *buf,size_t bufsize,
- const char *format, va_list arg_ptr)
+int estream_vsnprintf (char *buf,size_t bufsize,
+ const char *format, va_list arg_ptr)
_ESTREAM_GCC_A_PRINTF(3,0);
int estream_asprintf (char **bufp, const char *format, ...)
_ESTREAM_GCC_A_PRINTF(2,3);