blob: b6304e013a9f63dc2030014c89895baadcc20c13 (
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
|
#include <string.h>
#include "nil.h"
UwUVMValue uwunil_create()
{
return (UwUVMValue) {
.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("");
}
UwUVMType uwunil_type = {
.copy = &uwunil_copy,
.delete = &uwunil_delete,
.print = &uwunil_print,
};
|