summaryrefslogtreecommitdiffstats
path: root/libmisc/stpeprintf.c
blob: f3238eafbebd533828261c30ee27c1d9d9f7bffb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * SPDX-FileCopyrightText:  2022 - 2023, Alejandro Colomar <alx@kernel.org>
 *
 * SPDX-License-Identifier:  BSD-3-Clause
 */


#include <config.h>

#if !defined(HAVE_STPEPRINTF)

#ident "$Id$"

#include "stpeprintf.h"

#include <stdarg.h>


extern inline char *stpeprintf(char *dst, char *end, const char *restrict fmt,
    ...);
extern inline char *vstpeprintf(char *dst, char *end, const char *restrict fmt,
    va_list ap);


#endif  // !HAVE_STPEPRINTF