blob: 2e43f782cbec72d5769f4fee40cb79300d2267ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#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
|