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

15 lines
178 B
C

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