Revision aac1d7b88918f39b1b7c5bc0dcf831dcc9d5d8a8 authored by Andreas Gruenbacher on 13 March 2010, 17:17:04 UTC, committed by Junio C Hamano on 20 March 2010, 16:25:25 UTC
Otherwise, we will check random bytes for ref names < 3 characters.

Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent e9bd323
Raw File
notes.h
#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
back to top