2022-04-20 13:26:06 +00:00
|
|
|
/*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
*/
|
2022-05-06 13:49:09 +00:00
|
|
|
|
|
|
|
#ifndef KEYVAL_H
|
|
|
|
#define KEYVAL_H
|
2022-04-20 13:26:06 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2022-05-06 13:49:09 +00:00
|
|
|
#endif /* KEYVAL_H */
|