tests/qtest: pass stdout/stderr down to subtests
[qemu.git] / include / qemu / qemu-print.h
blob1b70920648b83e8beb49f0faff1cf8add3bc4e63
1 /*
2 * Print to stream or current monitor
4 * Copyright (C) 2019 Red Hat Inc.
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
13 #ifndef QEMU_PRINT_H
14 #define QEMU_PRINT_H
16 int qemu_vprintf(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
17 int qemu_printf(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
19 int qemu_vfprintf(FILE *stream, const char *fmt, va_list ap)
20 G_GNUC_PRINTF(2, 0);
21 int qemu_fprintf(FILE *stream, const char *fmt, ...) G_GNUC_PRINTF(2, 3);
23 #endif