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