Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 1.05 KB

File metadata and controls

26 lines (22 loc) · 1.05 KB

base_queue

Simple character queue in C, with no stdlib or dynamic memory requirements.

This says everything you'll need to know:

------------------------------------------------------------------------------
                           GCC Code Coverage Report
------------------------------------------------------------------------------
File                                       Lines    Exec  Cover   Missing
------------------------------------------------------------------------------
src/queue.c                                   36      36   100%   
tests/test_queue.c                            49      49   100%   
------------------------------------------------------------------------------
TOTAL                                         85      85   100%
------------------------------------------------------------------------------

Building

Standard Meson build process. Tests require cmocka. Enable testing with: meson configure -Dbuild_tests=true.

Coverage requires gcovr. Enable coverage with: meson configure -Db_coverage=true