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

15 lines
187 B
C

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