 27d5756410
			
		
	
	27d5756410
	
	
	
		
			
			There's no need to be rude to memory-concious callers... This patch has been improved by the following contributions: - Junio C Hamano: avoid old-style declaration Signed-off-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			295 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifndef NOTES_H
 | |
| #define NOTES_H
 | |
| 
 | |
| /* Free (and de-initialize) the internal notes tree structure */
 | |
| void free_notes(void);
 | |
| 
 | |
| #define NOTES_SHOW_HEADER 1
 | |
| #define NOTES_INDENT 2
 | |
| 
 | |
| void get_commit_notes(const struct commit *commit, struct strbuf *sb,
 | |
| 		const char *output_encoding, int flags);
 | |
| 
 | |
| #endif
 |