blob: 1e5ab4069417f184e494a30c7cf821acffafc8d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef ATTR_H
#define ATTR_H
/* An attribute is a pointer to this opaque structure */
struct git_attr;
struct git_attr *git_attr(const char *, int);
struct git_attr_check {
struct git_attr *attr;
int isset;
};
int git_checkattr(const char *path, int, struct git_attr_check *);
#endif /* ATTR_H */
|