#include #include #include "struct.h" #include "free.h" void free_string( struct string* this) { ENTER; if (this && !--this->refcount) { free(this->data); free(this); } EXIT; }