1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-11-05 13:48:03 +00:00
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);
}
}