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

15 lines
175 B
C

#include <debug.h>
#include "struct.h"
#include "inc.h"
struct token* inc_token(
struct token* this)
{
if (this)
this->refcount++;
return this;
}