Skip to content

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:

foo.c
#define MEANTONAL
#include "meantonal.h"

After that, just include meantonal.h in any other files as needed.

bar.c
#include "meantonal.h"

If you want to get a better understanding of how Meantonal works under the hood, check out the Learn category.