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, }, }; }