blob: d7596fc00f62769db255c26f198a5dbb2a183ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _API_STR_H_
#define _API_STR_H_
#include "vm.h"
extern UwUVMType uwustr_type;
UwUVMValue uwustr_create(const char *value);
char *uwustr_get(UwUVMValue vm_value);
#endif
|