1#ifndef ATTR_H
2#define ATTR_H
34
/* An attribute is a pointer to this opaque structure */
5struct git_attr;
67
struct git_attr *git_attr(const char *, int);
89
struct git_attr_check {
10struct git_attr *attr;
11int isset;
12};
1314
int git_checkattr(const char *path, int, struct git_attr_check *);
1516
#endif /* ATTR_H */