mirror of
https://github.com/git/git.git
synced 2024-11-23 09:56:28 +08:00
17 lines
305 B
C
17 lines
305 B
C
|
#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 */
|