Add flags to get_commit_notes() to control the format of the note string
[git/mingw.git] / notes.h
blob7f3eed4384208a6cff16aac08d64a9dfb2dafe57
1 #ifndef NOTES_H
2 #define NOTES_H
4 #define NOTES_SHOW_HEADER 1
5 #define NOTES_INDENT 2
7 void get_commit_notes(const struct commit *commit, struct strbuf *sb,
8 const char *output_encoding, int flags);
10 #endif