 175de52487
			
		
	
	
		175de52487
		
	
	
	
	
		
			
			Cleaned up with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
		
			
				
	
	
		
			23 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			626 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef QEMU_HELP_OPTION_H
 | |
| #define QEMU_HELP_OPTION_H
 | |
| 
 | |
| /**
 | |
|  * is_help_option:
 | |
|  * @s: string to test
 | |
|  *
 | |
|  * Check whether @s is one of the standard strings which indicate
 | |
|  * that the user is asking for a list of the valid values for a
 | |
|  * command option like -cpu or -M. The current accepted strings
 | |
|  * are 'help' and '?'. '?' is deprecated (it is a shell wildcard
 | |
|  * which makes it annoying to use in a reliable way) but provided
 | |
|  * for backwards compatibility.
 | |
|  *
 | |
|  * Returns: true if @s is a request for a list.
 | |
|  */
 | |
| static inline bool is_help_option(const char *s)
 | |
| {
 | |
|     return !strcmp(s, "?") || !strcmp(s, "help");
 | |
| }
 | |
| 
 | |
| #endif
 |