]> git.proxmox.com Git - mirror_qemu.git/blame - include/qemu/keyval.h
Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging
[mirror_qemu.git] / include / qemu / keyval.h
CommitLineData
9ca9c893
MAL
1/*
2 * This work is licensed under the terms of the GNU GPL, version 2 or later.
3 * See the COPYING file in the top-level directory.
4 */
9c092804
MA
5
6#ifndef KEYVAL_H
7#define KEYVAL_H
9ca9c893
MAL
8
9QDict *keyval_parse_into(QDict *qdict, const char *params, const char *implied_key,
10 bool *p_help, Error **errp);
11QDict *keyval_parse(const char *params, const char *implied_key,
12 bool *help, Error **errp);
13void keyval_merge(QDict *old, const QDict *new, Error **errp);
14
9c092804 15#endif /* KEYVAL_H */