crumb is a small C library containing common data structures and utility functions.
crumb was born out of simply wanting to write C, so you probably shouldn't actually use it.
There are several make
commands that can be used for building, testing, and generating docs.
# download and build third-party dependencies
make deps
# build .o files and a small demo executable
make build
# build static library object
make dist
# run unit tests
make test
# generate Doxygen docs
make docs
# start an nginx Docker container for serving docs
make serve-docs