lisp-take-1/string/inc.c
2024-11-28 18:36:25 -06:00

18 lines
204 B
C

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