1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
============================================================================
Name : hev-memory-allocator-api.h
Author : Heiher <r@hev.cc>
Copyright : Copyright (c) 2018 everyone.
Description : Memory allocator APIs
============================================================================
*/
#ifndef __HEV_MEMORY_ALLOCATOR_API_H__
#define __HEV_MEMORY_ALLOCATOR_API_H__
#include <stddef.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* hev_malloc:
* @size: bytes
*
* Allocate @size bytes memory from the default memory allocator.
*
* Returns: memory address
*
* Since: 1.0
*/
void *hev_malloc (size_t size);
/**
* hev_malloc0:
* @size: bytes
*
* Allocate @size bytes memory from the default memory allocator.
* The memroy content will be cleared to zero.
*
* Returns: memory address
*
* Since: 1.0
*/
void *hev_malloc0 (size_t size);
/**
* hev_calloc:
* @nmemb: bytes
* @size: bytes
*
* Allocate memory for an array of @nmemb elements of @size bytes each from the
* default memory allocator. The memroy content will be cleared to zero.
*
* Returns: memory address
*
* Since: 5.1.1
*/
void *hev_calloc (size_t nmemb, size_t size);
/**
* hev_realloc:
* @ptr: memory address
* @size: bytes
*
* Changes the size of the memory block pointed to by @ptr to @size bytes.
*
* Returns: memory address
*
* Since: 3.2
*/
void *hev_realloc (void *ptr, size_t size);
/**
* hev_free:
* @ptr: memory address
*
* Free the memory from memory allocator.
*
* Since: 1.0
*/
void hev_free (void *ptr);
#ifdef __cplusplus
}
#endif
#endif /* __HEV_MEMORY_ALLOCATOR_API_H__ */