aboutsummaryrefslogtreecommitdiff
path: root/api/int.c
blob: aea8e26d0ad3038ece66a5e9dc4d6b8e168c3058 (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,	
		},
	};
}