Overview
This reference details the types and functions provided by the C implementation of Meantonal.
External link to the project repo can be found below.
If you haven’t already, add Meantonal to your project with the following script:
curl https://meantonal.org/meantonal.h > meantonal.h
You must #define MEANTONAL
in exactly one file before the first inclusion of meantonal.h
:
#define MEANTONAL#include "meantonal.h"
After that, just include meantonal.h
in any other files as needed.
#include "meantonal.h"
If you want to get a better understanding of how Meantonal works under the hood, check out the Learn category.