aboutsummaryrefslogtreecommitdiff
path: root/api/int.c
blob: 49463cf0792a962dde9dd03f33184e532db44595 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "int.h"

UwUVMValue uwuint_create(int value)
{
	return (UwUVMValue) {
		.type = VT_INT,
		.value = {
			.int_value = value,
		},
	};
}