aboutsummaryrefslogtreecommitdiff
path: root/api/nil.c
blob: 2c47cb60941990e71e1856d032f5558ad83b0bf0 (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_clone(void *data)
{
	return data;
}

static void uwunil_delet(void *data)
{
	(void) data;
}

static char *uwunil_print(void *data)
{
	(void) data;
	return strdup("");
}

UwUVMType uwunil_type = {
	.clone = &uwunil_clone,
	.delet = &uwunil_delet,
	.print = &uwunil_print,
};