Johannes Schindelin | a97a746 | 2009-10-09 12:21:57 +0200 | [diff] [blame] | 1 | #ifndef NOTES_H |
| 2 | #define NOTES_H |
| 3 | |
Johan Herland | 27d5756 | 2009-10-09 12:22:06 +0200 | [diff] [blame] | 4 | /* Free (and de-initialize) the internal notes tree structure */ |
| 5 | void free_notes(void); |
| 6 | |
Johan Herland | c56fcc8 | 2009-10-09 12:22:04 +0200 | [diff] [blame] | 7 | #define NOTES_SHOW_HEADER 1 |
| 8 | #define NOTES_INDENT 2 |
| 9 | |
Johannes Schindelin | a97a746 | 2009-10-09 12:21:57 +0200 | [diff] [blame] | 10 | void get_commit_notes(const struct commit *commit, struct strbuf *sb, |
Johan Herland | c56fcc8 | 2009-10-09 12:22:04 +0200 | [diff] [blame] | 11 | const char *output_encoding, int flags); |
Johannes Schindelin | a97a746 | 2009-10-09 12:21:57 +0200 | [diff] [blame] | 12 | |
| 13 | #endif |