LO27/LibCell/CellElement.c

16 lines
284 B
C

/*
* @Author: klmp200
* @Date: 2016-12-10 01:32:50
* @Last Modified by: klmp200
* @Last Modified time: 2016-12-10 01:33:40
*/
#include <stdio.h>
#include <stdlib.h>
#include <CellElment.h>
void freeCellElement(cellElement* element) {
if (element != NULL){
free(element);
}
}