18 lines
285 B
C
18 lines
285 B
C
#ifndef TEST_ALLOCATOR_H
|
|
#define TEST_ALLOCATOR_H
|
|
|
|
#include "tester.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif // __cplusplus
|
|
|
|
TestFuncResult test_libc_allocator(void);
|
|
TestFuncResult test_arena_allocator(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif // __cplusplus
|
|
|
|
#endif // !TEST_ALLOCATOR_H
|