lambda-calc-1/istream/inc.c
2025-01-20 13:40:51 -06:00

15 lines
181 B
C

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