]> Git Repo - qemu.git/blob - include/qemu/qemu-print.h
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[qemu.git] / include / qemu / qemu-print.h
1 /*
2  * Print to stream or current monitor
3  *
4  * Copyright (C) 2019 Red Hat Inc.
5  *
6  * Authors:
7  *  Markus Armbruster <[email protected]>,
8  *
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.
11  */
12
13 #ifndef QEMU_PRINT_H
14 #define QEMU_PRINT_H
15
16 int qemu_vprintf(const char *fmt, va_list ap) GCC_FMT_ATTR(1, 0);
17 int qemu_printf(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
18
19 int qemu_vfprintf(FILE *stream, const char *fmt, va_list ap)
20     GCC_FMT_ATTR(2, 0);
21 int qemu_fprintf(FILE *stream, const char *fmt, ...) GCC_FMT_ATTR(2, 3);
22
23 #endif
This page took 0.024518 seconds and 4 git commands to generate.