libgit2-sys 0.18.3+1.9.2

Native bindings to the libgit2 library
Documentation
/*
 * 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_hashmap_str_h__
#define INCLUDE_hashmap_str_h__

#include "hashmap.h"

GIT_INLINE(uint32_t) git_hashmap_str_hash(const char *s)
{
	uint32_t h = (uint32_t)*s;

	if (h) {
		for (++s; *s; ++s)
			h = (h << 5) - h + (uint32_t)*s;
	}

	return h;
}

GIT_INLINE(bool) git_hashmap_str_equal(const char *one, const char *two)
{
	return strcmp(one, two) == 0;
}

#define GIT_HASHMAP_STR_STRUCT(name, val_t) \
	GIT_HASHMAP_STRUCT(name, const char *, val_t)
#define GIT_HASHMAP_STR_PROTOTYPES(name, val_t) \
	GIT_HASHMAP_PROTOTYPES(name, const char *, val_t)
#define GIT_HASHMAP_STR_FUNCTIONS(name, scope, val_t) \
	GIT_HASHMAP_FUNCTIONS(name, scope, const char *, val_t, git_hashmap_str_hash, git_hashmap_str_equal)

#define GIT_HASHMAP_STR_SETUP(name, val_t) \
	GIT_HASHMAP_STR_STRUCT(name, val_t) \
	GIT_HASHMAP_STR_FUNCTIONS(name, GIT_HASHMAP_INLINE, val_t)

GIT_HASHSET_SETUP(git_hashset_str, const char *, git_hashmap_str_hash, git_hashmap_str_equal);
GIT_HASHMAP_SETUP(git_hashmap_str, const char *, void *, git_hashmap_str_hash, git_hashmap_str_equal);

#endif