blob: 22991773e2edee2b420e2caa4dfd1added6de83e (
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 UwUVMNativeType uwubool_type;
UwUVMValue uwubool_create(bool value);
bool uwubool_get(UwUVMValue vm_value);
#endif
|