]> git.lizzy.rs Git - uwu-lang.git/blob - api/bool.h
Add :ref module and refactor type handling
[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 UwUVMValue       uwubool_create(bool value);
9 bool             uwubool_get(UwUVMValue vm_value);
10
11 #endif