18 lines
216 B
C
18 lines
216 B
C
|
|
#include <debug.h>
|
|
|
|
#include "struct.h"
|
|
#include "inc.h"
|
|
|
|
struct stringtree* inc_stringtree(
|
|
struct stringtree* this)
|
|
{
|
|
ENTER;
|
|
|
|
if (this)
|
|
this->refcount++;
|
|
|
|
EXIT;
|
|
return this;
|
|
}
|
|
|