| 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 | |
| 6 | #ifndef KEYVAL_H |
| 7 | #define KEYVAL_H |
| 8 | |
| 9 | QDict *keyval_parse_into(QDict *qdict, const char *params, const char *implied_key, |
| 10 | bool *p_help, Error **errp); |
| 11 | QDict *keyval_parse(const char *params, const char *implied_key, |
| 12 | bool *help, Error **errp); |
| 13 | void keyval_merge(QDict *old, const QDict *new, Error **errp); |
| 14 | |
| 15 | #endif /* KEYVAL_H */ |