Skip to content

KennedyTedesco/dynamic-array

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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?