4-variable-simplifier/string/inc.c
2026-04-25 16:00:10 -04:00

17 lines
190 B
C

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