]> git.lizzy.rs Git - uwu-lang.git/blob - api/str.h
Unify value types
[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
8 UwUVMValue uwustr_create(const char *value);
9 char *uwustr_get(UwUVMValue vm_value);
10
11 #endif