1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-06-29 16:38:02 +00:00
LO27/LibCell/CellElement.c

16 lines
284 B
C
Raw Normal View History

2016-12-10 01:28:10 +00:00
/*
* @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);
}
}