repo.or.cz
/
git
/
jrn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Makefile: add patch-ids.h back in.
[git/jrn.git]
/
attr.h
blob
1e5ab4069417f184e494a30c7cf821acffafc8d5
1
#ifndef ATTR_H
2
#define ATTR_H
3
4
/* An attribute is a pointer to this opaque structure */
5
struct
git_attr
;
6
7
struct
git_attr
*
git_attr
(
const char
*,
int
);
8
9
struct
git_attr_check
{
10
struct
git_attr
*
attr
;
11
int
isset
;
12
};
13
14
int
git_checkattr
(
const char
*
path
,
int
,
struct
git_attr_check
*);
15
16
#endif
/* ATTR_H */