diff options
Diffstat (limited to 'attr.h')
| -rw-r--r-- | attr.h | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -45,7 +45,7 @@ * const char *path; * * setup_check(); - * git_check_attr(path, check); + * git_check_attr(&the_index, tree_oid, path, check); * ------------ * * - Act on `.value` member of the result, left in `check->items[]`: @@ -120,6 +120,7 @@ #define ATTR_MAX_FILE_SIZE (100 * 1024 * 1024) struct index_state; +struct object_id; /** * An attribute is an opaque object that is identified by its name. Pass the @@ -202,13 +203,14 @@ void attr_check_free(struct attr_check *check); const char *git_attr_name(const struct git_attr *); void git_check_attr(struct index_state *istate, - const char *path, struct attr_check *check); + const struct object_id *tree_oid, const char *path, + struct attr_check *check); /* * Retrieve all attributes that apply to the specified path. * check holds the attributes and their values. */ -void git_all_attrs(struct index_state *istate, +void git_all_attrs(struct index_state *istate, const struct object_id *tree_oid, const char *path, struct attr_check *check); enum git_attr_direction { |
