xref: /qemu/include/qemu/keyval.h (revision 1fbf2665)
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  */
5 #ifndef KEYVAL_H_
6 #define KEYVAL_H_
7 
8 QDict *keyval_parse_into(QDict *qdict, const char *params, const char *implied_key,
9                          bool *p_help, Error **errp);
10 QDict *keyval_parse(const char *params, const char *implied_key,
11                     bool *help, Error **errp);
12 void keyval_merge(QDict *old, const QDict *new, Error **errp);
13 
14 #endif /* KEYVAL_H_ */
15