Sha256: 6720ddbb7af14eb983209cd982c40be3712bd171802d5e356449e84fd9f7d560

Contents?: true

Size: 716 Bytes

Versions: 2

Compression:

Stored size: 716 Bytes

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#ifndef INCLUDE_attrcache_h__
#define INCLUDE_attrcache_h__

#include "pool.h"
#include "strmap.h"

typedef struct {
	int initialized;
	git_pool pool;
	git_strmap *files;	/* hash path to git_attr_file of rules */
	git_strmap *macros;	/* hash name to vector<git_attr_assignment> */
	const char *cfg_attr_file; /* cached value of core.attributesfile */
	const char *cfg_excl_file; /* cached value of core.excludesfile */
} git_attr_cache;

extern int git_attr_cache__init(git_repository *repo);

#endif

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rugged-0.18.0.gh.de28323 vendor/libgit2/src/attrcache.h
rugged-0.18.0.b1 vendor/libgit2/src/attrcache.h