Move to kernel style SPDX license identifiers
[lttng-ust.git] / include / ust_snprintf.h
CommitLineData
c0c0989a
MJ
1/*
2 * SPDX-License-Identifier: LGPL-2.1-or-later
a09dac63 3 *
c0c0989a 4 * Copyright (C) 2009 Pierre-Marc Fournier
a09dac63
PMF
5 */
6
a1eb70f9
PMF
7#ifndef UST_SNPRINTF
8#define UST_SNPRINTF
9
10#include <stdarg.h>
b4051ad8 11#include <stddef.h>
a1eb70f9
PMF
12
13extern int ust_safe_vsnprintf(char *str, size_t n, const char *fmt, va_list ap);
14extern int ust_safe_snprintf(char *str, size_t n, const char *fmt, ...);
15
16#endif /* UST_SNPRINTF */
This page took 0.029353 seconds and 4 git commands to generate.