]> git.proxmox.com Git - mirror_qemu.git/blame - include/qemu/qemu-print.h
util/uri: Remove uri_string_unescape()
[mirror_qemu.git] / include / qemu / qemu-print.h
CommitLineData
637de4db
MA
1/*
2 * Print to stream or current monitor
3 *
4 * Copyright (C) 2019 Red Hat Inc.
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
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
9edc6313
MAL
16int qemu_vprintf(const char *fmt, va_list ap) G_GNUC_PRINTF(1, 0);
17int qemu_printf(const char *fmt, ...) G_GNUC_PRINTF(1, 2);
637de4db 18
19aaa4c3 19int qemu_vfprintf(FILE *stream, const char *fmt, va_list ap)
9edc6313
MAL
20 G_GNUC_PRINTF(2, 0);
21int qemu_fprintf(FILE *stream, const char *fmt, ...) G_GNUC_PRINTF(2, 3);
19aaa4c3 22
637de4db 23#endif