]> git.lizzy.rs Git - uwu-lang.git/blob - api/int.h
Add :ref module and refactor type handling
[uwu-lang.git] / api / int.h
1 #ifndef _API_INT_H_
2 #define _API_INT_H_
3
4 #include "vm.h"
5
6 extern UwUVMType uwuint_type;
7 UwUVMValue       uwuint_create(int value);
8 int              uwuint_get(UwUVMValue vm_value);
9
10 #endif