Newer
Older
Tardis / lang / boolean.h
// SPDX-License-Identifier: MIT
// Copyright (c) 2023 John Watts and the LuminaSensum contributors

#ifndef BOOLEAN_H
#define BOOLEAN_H

#include "types.h"
#include <stdbool.h>

// Creates a boolean
Object boolean_create(bool value);

// Gets a boolean's value
bool boolean_value(Object obj);

#endif