blob: 70dfd60e3067d739a4301db82f576c7ab166bdd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _API_BOOL_H_
#define _API_BOOL_H_
#include <stdbool.h>
#include "vm.h"
extern UwUVMType uwubool_type;
UwUVMValue uwubool_create(bool value);
bool uwubool_get(UwUVMValue vm_value);
#endif
|