tralloc

A C library that adds size information to memory allocations.
git clone git://src.gearsix.net/tralloc
Log | Files | Refs | Atom | README

commit 4ce7f24be3fbdb53a1bf132e342e619ba3c782c5
parent 7742e4fed4787ed92030eaef6288c7fb15b38806
Author: gearsix <gearsix@tuta.io>
Date:   Mon,  4 Oct 2021 12:03:46 +0100

minor amend to README

Diffstat:
MREADME.md | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -22,10 +22,15 @@ allocation functions, then it'll cause a memory error. This behaviour is consistent with stdlib though. Make sure to read function documentation. +This was done more as a personal exercise than anything, most of the +time in C you'll track allocated memory yourself. This was just a +cool idea I got carried away with. + ## Goals - Track the total number of heap-allocated bytes. - Track number of bytes allocated for individual pointers. +- Don't get in the way of any users. ## Guidelines