minuet is a simple, lightweight utility library for C. It provides a small collection of things that might be useful for development along the way. In particular, it features a set of testing and debugging macros derived from Zed Shaw's dbg.h and minunit.h. It also features some other small utilities that I thought I might need in other places.
I decided to set up minuet in a way that makes it as natural as humanly possible to use directly within an application. As such, I came to the conclusion that the best way to do so would be by using git submodules. All you need to do is use git submodule add -b master git://github.com/aaronweiss74/minuet.git src/minuet. After that, you may wish to edit the update mode in .gitmodules to behave how you want.
- Peter Atashian for his help with git submodules.
- Zed Shaw for his work on dbg.h and minunit.h.
- Jera Design for the original minunit.h.
minuet is licensed under the MIT License. The full license text can be found in LICENSE.md for your convenience.