notes.hon commit Add flags to get_commit_notes() to control the format of the note string (c56fcc8)
   1#ifndef NOTES_H
   2#define NOTES_H
   3
   4#define NOTES_SHOW_HEADER 1
   5#define NOTES_INDENT 2
   6
   7void get_commit_notes(const struct commit *commit, struct strbuf *sb,
   8                const char *output_encoding, int flags);
   9
  10#endif