Do not require the whole option machinery to handle keyval, as it is used by QAPI alone, without the option API. And match the associated unit name. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com> Message-Id: <20220420132624.2439741-24-marcandre.lureau@redhat.com>
		
			
				
	
	
		
			15 lines
		
	
	
		
			510 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			510 B
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * 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_ */
 |