Added external/libxml2 (for Android)

This commit is contained in:
Dimitris Panokostas 2019-11-01 00:20:53 +01:00
parent 3f3572b66d
commit 7ffb3d0d25
289 changed files with 361404 additions and 0 deletions

26
external/libxml2/testOOMlib.h vendored Normal file
View file

@ -0,0 +1,26 @@
#ifndef TEST_OOM_LIB_H
#define TEST_OOM_LIB_H
#include <config.h>
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
void* test_malloc (size_t bytes);
void* test_realloc (void *memory,
size_t bytes);
void test_free (void *memory);
char* test_strdup (const char *str);
/* returns true on success */
typedef int (* TestMemoryFunction) (void *data);
/* returns true on success */
int test_oom_handling (TestMemoryFunction func,
void *data);
/* get number of blocks leaked */
int test_get_malloc_blocks_outstanding (void);
#endif