mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-05 14:28:03 +00:00
17 lines
286 B
C
17 lines
286 B
C
/*
|
|
* @Author: klmp200
|
|
* @Date: 2016-12-10 01:32:50
|
|
* @Last Modified by: klmp200
|
|
* @Last Modified time: 2016-12-10 04:29:48
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <CellElement.h>
|
|
|
|
void FreeCellElement(cellElement* element) {
|
|
if (element != NULL){
|
|
free(element);
|
|
}
|
|
}
|