lambda-calc-1/stringtree/inc.c
2025-01-13 20:36:07 -06:00

18 lines
216 B
C

#include <debug.h>
#include "struct.h"
#include "inc.h"
struct stringtree* inc_stringtree(
struct stringtree* this)
{
ENTER;
if (this)
this->refcount++;
EXIT;
return this;
}