/dynamic-array

Dynamic array in C

Primary LanguageCMIT LicenseMIT

Dynamic Array

Learning purposes only. =D

A simple and naive implementation of a resizable array in C.

Running tests

This project uses Meson.

After cloning:

$ meson builddir

It will generate the buildir, then you can run the tests:

$ meson test -C builddir/ -v 

Testing using Valgrind (a tool to find memory leaks):

$ meson test -C builddir/ -v --wrap=valgrind

What see next?