Code

Fix 'diff' attribute semantics.
[git.git] / attr.h
1 #ifndef ATTR_H
2 #define ATTR_H
4 /* An attribute is a pointer to this opaque structure */
5 struct git_attr;
7 struct git_attr *git_attr(const char *, int);
9 struct git_attr_check {
10         struct git_attr *attr;
11         int isset;
12 };
14 int git_checkattr(const char *path, int, struct git_attr_check *);
16 #endif /* ATTR_H */