blob: 78a18b67d16fe5d2e50f84f0f3d5cd077c23a8e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef __CLAR_LIBGIT2_ALLOC__
#define __CLAR_LIBGIT2_ALLOC__
#include "clar.h"
#include "common.h"
#include "git2/sys/alloc.h"
void cl_alloc_limit(size_t bytes);
void cl_alloc_reset(void);
#endif
|