aboutsummaryrefslogtreecommitdiff
path: root/api/str.h
blob: 609328e2a7255b3855adeb17bfe8662ada75fe60 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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