]> git.lizzy.rs Git - uwu-lang.git/blob - api/bool.h
Unify value types
[uwu-lang.git] / api / bool.h
1 #ifndef _API_BOOL_H_
2 #define _API_BOOL_H_
3
4 #include <stdbool.h>
5 #include "vm.h"
6
7 extern UwUVMType uwubool_type;
8
9 UwUVMValue uwubool_create(bool value);
10 bool uwubool_get(UwUVMValue vm_value);
11
12 #endif