lambda-calc-1/expression/variable/free.c
2025-01-13 20:36:07 -06:00

19 lines
270 B
C

#include <debug.h>
#include <string/free.h>
#include "struct.h"
#include "free.h"
void free_variable_expression(
struct expression* super)
{
ENTER;
struct variable_expression* this = (void*) super;
free_string(this->name);
EXIT;
}