blob: a1421e351ae0a6f97824b150140e49ddd5d3414d [file] [log] [blame]
Johannes Schindelina97a7462009-10-09 12:21:57 +02001#ifndef NOTES_H
2#define NOTES_H
3
Johan Herland27d57562009-10-09 12:22:06 +02004/* Free (and de-initialize) the internal notes tree structure */
5void free_notes(void);
6
Johan Herlandc56fcc82009-10-09 12:22:04 +02007#define NOTES_SHOW_HEADER 1
8#define NOTES_INDENT 2
9
Johannes Schindelina97a7462009-10-09 12:21:57 +020010void get_commit_notes(const struct commit *commit, struct strbuf *sb,
Johan Herlandc56fcc82009-10-09 12:22:04 +020011 const char *output_encoding, int flags);
Johannes Schindelina97a7462009-10-09 12:21:57 +020012
13#endif