blob: a1421e351ae0a6f97824b150140e49ddd5d3414d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#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
|