Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 590 Bytes

Overview.md

File metadata and controls

38 lines (29 loc) · 590 Bytes

CMemMan Documentation

Current documentation for: 1.0.0

Overview

libcmemman is a library that provides some useful technologies for managing memory in a more efficient way in C.

Types

typedef struct _memory_pool {
    ptr_info_t **ptr_pool;
    int scope_depth;
} mempool_t;

Learn More >

typedef void (*destructor_t)(void *);
typedef struct _ptr_info {
    void *ptr;
    destructor_t destructor;
} ptr_info_t;

Concepts

Index

B S

B

Borrow

S

Scope