#include <stdbool.h>

bool mybool = false;

bool myinvert (bool var)
{
    return !var;
}