]> git.lizzy.rs Git - uwu-lang.git/blob - api/str.h
Add :ref module and refactor type handling
[uwu-lang.git] / api / str.h
1 #ifndef _API_STR_H_
2 #define _API_STR_H_
3
4 #include "vm.h"
5
6 extern UwUVMType uwustr_type;
7 UwUVMValue       uwustr_create(const char *value);
8 char            *uwustr_get(UwUVMValue vm_value);
9
10 #endif