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

15 lines
169 B
C

#include <debug.h>
#include "struct.h"
#include "free.h"
void free_string(
struct string* this)
{
if (this && !--this->refcount)
{
TODO;
}
}