lisp-take-1/stringtree/inc.c
2024-11-28 18:36:25 -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;
}