Zth (libzth)
Loading...
Searching...
No Matches
zth_logv.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2019-2026 Jochem Rutgers
3 *
4 * SPDX-License-Identifier: MPL-2.0
5 */
6
7#include <libzth/util.h>
8
14#ifndef ZTH_OS_WINDOWS
15__attribute__((weak))
16#endif
17void zth_logv(char const* fmt, va_list arg)
18{
19 // NOLINTNEXTLINE
20 vprintf(fmt, arg);
21}
void zth_logv(char const *fmt, va_list arg)
Prints the given printf()-like formatted string to stdout.
Definition zth_logv.cpp:17