Add a boolean version of the find_hook() function for those callers who are only interested in checking whether the hook exists, not what the path to it is. Signed-off-by: Emily Shaffer <emilyshaffer@google.com> Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			370 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef HOOK_H
 | 
						|
#define HOOK_H
 | 
						|
 | 
						|
/*
 | 
						|
 * Returns the path to the hook file, or NULL if the hook is missing
 | 
						|
 * or disabled. Note that this points to static storage that will be
 | 
						|
 * overwritten by further calls to find_hook and run_hook_*.
 | 
						|
 */
 | 
						|
const char *find_hook(const char *name);
 | 
						|
 | 
						|
/**
 | 
						|
 * A boolean version of find_hook()
 | 
						|
 */
 | 
						|
int hook_exists(const char *hookname);
 | 
						|
 | 
						|
#endif
 |