#if !defined(HAVE_SEPRINTF)
-extern inline char *seprintf(char *dst, char *end, const char *restrict fmt,
- ...);
-extern inline char *vseprintf(char *dst, char *end, const char *restrict fmt,
- va_list ap);
+extern inline char *seprintf(char *dst, const char *end,
+ const char *restrict fmt, ...);
+extern inline char *vseprintf(char *dst, const char *end,
+ const char *restrict fmt, va_list ap);
#endif
#if !defined(HAVE_SEPRINTF)
// seprintf - string end-pointer print formatted
format_attr(printf, 3, 4)
-inline char *seprintf(char *dst, char *end, const char *restrict fmt, ...);
+inline char *seprintf(char *dst, const char *end, const char *restrict fmt,
+ ...);
// vseprintf - va_list string end-pointer print formatted
format_attr(printf, 3, 0)
-inline char *vseprintf(char *dst, char *end, const char *restrict fmt,
+inline char *vseprintf(char *dst, const char *end, const char *restrict fmt,
va_list ap);
#endif
#if !defined(HAVE_SEPRINTF)
inline char *
-seprintf(char *dst, char *end, const char *restrict fmt, ...)
+seprintf(char *dst, const char *end, const char *restrict fmt, ...)
{
char *p;
va_list ap;
#if !defined(HAVE_SEPRINTF)
inline char *
-vseprintf(char *dst, char *end, const char *restrict fmt, va_list ap)
+vseprintf(char *dst, const char *end, const char *restrict fmt, va_list ap)
{
int len;
ptrdiff_t size;
#if !defined(HAVE_STPECPY)
-extern inline char *stpecpy(char *dst, char *end, const char *restrict src);
+extern inline char *stpecpy(char *dst, const char *end,
+ const char *restrict src);
#endif
#if !defined(HAVE_STPECPY)
// stpecpy - string offset-pointer end-pointer copy
ATTR_STRING(3)
-inline char *stpecpy(char *dst, char *end, const char *restrict src);
+inline char *stpecpy(char *dst, const char *end, const char *restrict src);
#endif
#if !defined(HAVE_STPECPY)
inline char *
-stpecpy(char *dst, char *end, const char *restrict src)
+stpecpy(char *dst, const char *end, const char *restrict src)
{
bool trunc;
char *p;