Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: c5e5f6030573b5433284b4e6b4342ab7204f20e1 authored by Junio C Hamano on 28 February 2010, 19:41:24 UTC
Git 1.7.0.1
Tip revision: c5e5f60
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