Revision 031f82f75124dc96e3bebf8fa0b15eddf5544012 authored by Junio C Hamano on 17 February 2010, 22:55:15 UTC, committed by Junio C Hamano on 17 February 2010, 22:55:15 UTC
* jk/grep-double-dash:
  accept "git grep -- pattern"
2 parent s 07cb9a3 + 1123c67
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