Exemplo n.º 1
0
void free_cons(cons_t *c)
{
	if(c != NULL){
		if(c->type == TYPE_CAR){
			free_cons(c->v.car);
		}
		if(c->type != TYPE_STR){
			low_free(c);
		}
	}
}
Exemplo n.º 2
0
void StringData::destructStatic() {
  assert(checkSane() && isStatic());
  assert(isFlat());
  low_free(this);
}