tun2socks 0.0.1

High performance tun2socks
Documentation
/*
 ============================================================================
 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__ */