mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-05 10:58:02 +00:00
16 lines
284 B
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);
|
||
|
}
|
||
|
}
|