gen state

This commit is contained in:
corey 2023-11-09 13:00:58 -06:00
parent 5db78f0b81
commit 6c344b05b0

9
gen.c Normal file
View File

@ -0,0 +1,9 @@
#include"gen.h"
Gen gen_new(void)
{
Gen gen;
gen.labelno=0;
gen.vars=(Var){0};
return gen;
}