3f66389468d69c10d8095c62d00e3026d4f9b166
[lttng-ust.git] / include / ust-snprintf.h
1 /*
2 * SPDX-License-Identifier: LGPL-2.1-or-later
3 *
4 * Copyright (C) 2009 Pierre-Marc Fournier
5 */
6
7 #ifndef UST_SNPRINTF
8 #define UST_SNPRINTF
9
10 #include <stdarg.h>
11 #include <stddef.h>
12
13 int ust_safe_vsnprintf(char *str, size_t n, const char *fmt, va_list ap)
14 __attribute__((visibility("hidden")));
15
16 int ust_safe_snprintf(char *str, size_t n, const char *fmt, ...)
17 __attribute__((visibility("hidden")))
18 __attribute__((format(printf, 3, 4)));
19
20 #endif /* UST_SNPRINTF */
This page took 0.028472 seconds and 3 git commands to generate.