15 lines
169 B
C
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;
|
|
}
|
|
}
|
|
|