2009-10-09 12:21:57 +02:00
|
|
|
#ifndef NOTES_H
|
|
|
|
#define NOTES_H
|
|
|
|
|
2009-10-09 12:22:06 +02:00
|
|
|
/* Free (and de-initialize) the internal notes tree structure */
|
|
|
|
void free_notes(void);
|
|
|
|
|
2009-10-09 12:22:04 +02:00
|
|
|
#define NOTES_SHOW_HEADER 1
|
|
|
|
#define NOTES_INDENT 2
|
|
|
|
|
2009-10-09 12:21:57 +02:00
|
|
|
void get_commit_notes(const struct commit *commit, struct strbuf *sb,
|
2009-10-09 12:22:04 +02:00
|
|
|
const char *output_encoding, int flags);
|
2009-10-09 12:21:57 +02:00
|
|
|
|
|
|
|
#endif
|