4 /* An attribute is a pointer to this opaque structure */
8 * Given a string, return the gitattribute object that
11 struct git_attr
*git_attr(const char *);
14 extern const char git_attr__true
[];
15 extern const char git_attr__false
[];
17 /* For public to check git_attr_check results */
18 #define ATTR_TRUE(v) ((v) == git_attr__true)
19 #define ATTR_FALSE(v) ((v) == git_attr__false)
20 #define ATTR_UNSET(v) ((v) == NULL)
23 * Send one or more git_attr_check to git_check_attrs(), and
24 * each 'value' member tells what its value is.
25 * Unset one is returned as NULL.
27 struct attr_check_item
{
28 const struct git_attr
*attr
;
35 struct attr_check_item
*items
;
38 extern struct attr_check
*attr_check_alloc(void);
39 extern struct attr_check
*attr_check_initl(const char *, ...);
41 extern struct attr_check_item
*attr_check_append(struct attr_check
*check
,
42 const struct git_attr
*attr
);
44 extern void attr_check_reset(struct attr_check
*check
);
45 extern void attr_check_clear(struct attr_check
*check
);
46 extern void attr_check_free(struct attr_check
*check
);
49 * Return the name of the attribute represented by the argument. The
50 * return value is a pointer to a null-delimited string that is part
51 * of the internal data structure; it should not be modified or freed.
53 extern const char *git_attr_name(const struct git_attr
*);
55 extern int git_check_attr(const char *path
, struct attr_check
*check
);
58 * Retrieve all attributes that apply to the specified path.
59 * check holds the attributes and their values.
61 extern void git_all_attrs(const char *path
, struct attr_check
*check
);
63 enum git_attr_direction
{
68 void git_attr_set_direction(enum git_attr_direction
, struct index_state
*);