aboutsummaryrefslogtreecommitdiff
path: root/include/qemu/keyval.h
blob: 1187b68303433becfeaa7f8e6d83d230b6e9b54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * This work is licensed under the terms of the GNU GPL, version 2 or later.
 * See the COPYING file in the top-level directory.
 */

#ifndef KEYVAL_H
#define KEYVAL_H

QDict *keyval_parse_into(QDict *qdict, const char *params, const char *implied_key,
                         bool *p_help, Error **errp);
QDict *keyval_parse(const char *params, const char *implied_key,
                    bool *help, Error **errp);
void keyval_merge(QDict *old, const QDict *new, Error **errp);

#endif /* KEYVAL_H */