blob: bbd1eb82534488cc8db5b9a6159fc82da269cbd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#include <string.h>
#include "nil.h"
UwUVMValue uwunil_create()
{
return (UwUVMValue) {
.type = VT_NAT,
.value = {
.nat_value = {
.type = &uwunil_type,
.data = NULL,
}
}
};
}
static void *uwunil_copy(void *data)
{
return data;
}
static void uwunil_delete(void *data)
{
(void) data;
}
static char *uwunil_print(void *data)
{
(void) data;
return strdup("");
}
UwUVMNativeType uwunil_type = {
.copy = &uwunil_copy,
.delete = &uwunil_delete,
.print = &uwunil_print,
};
|