repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add flags to get_commit_notes() to control the format of the note string
[alt-git.git]
/
notes.h
blob
7f3eed4384208a6cff16aac08d64a9dfb2dafe57
1
#ifndef NOTES_H
2
#define NOTES_H
3
4
#define NOTES_SHOW_HEADER 1
5
#define NOTES_INDENT 2
6
7
void
get_commit_notes
(
const struct
commit
*
commit
,
struct
strbuf
*
sb
,
8
const char
*
output_encoding
,
int
flags
);
9
10
#endif