1#ifndef NOTES_H
2#define NOTES_H
34
/* Free (and de-initialize) the internal notes tree structure */
5void free_notes(void);
67
#define NOTES_SHOW_HEADER 1
8#define NOTES_INDENT 2
910
void get_commit_notes(const struct commit *commit, struct strbuf *sb,
11const char *output_encoding, int flags);
1213
#endif