]> git.proxmox.com Git - libgit2.git/blob - src/allocators/failalloc.h
New upstream version 1.3.0+dfsg.1
[libgit2.git] / src / allocators / failalloc.h
1 /*
2 * Copyright (C) the libgit2 contributors. All rights reserved.
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
7
8 #ifndef INCLUDE_allocators_failalloc_h__
9 #define INCLUDE_allocators_failalloc_h__
10
11 #include "common.h"
12
13 extern void *git_failalloc_malloc(size_t len, const char *file, int line);
14 extern void *git_failalloc_calloc(size_t nelem, size_t elsize, const char *file, int line);
15 extern char *git_failalloc_strdup(const char *str, const char *file, int line);
16 extern char *git_failalloc_strndup(const char *str, size_t n, const char *file, int line);
17 extern char *git_failalloc_substrdup(const char *start, size_t n, const char *file, int line);
18 extern void *git_failalloc_realloc(void *ptr, size_t size, const char *file, int line);
19 extern void *git_failalloc_reallocarray(void *ptr, size_t nelem, size_t elsize, const char *file, int line);
20 extern void *git_failalloc_mallocarray(size_t nelem, size_t elsize, const char *file, int line);
21 extern void git_failalloc_free(void *ptr);
22
23 #endif