1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-11-05 12:38:04 +00:00

Added funcs about CellElement

This commit is contained in:
Naej 2016-12-10 02:41:43 +01:00 committed by klmp200
parent 2c81de90ca
commit 1f9341efae

View File

@ -37,9 +37,18 @@ struct cellElement {
struct cellElement * nextRow;
};
typedef struct cellElement * cellElement;
typedef struct cellElement cellElement;
int AddNextCol(cellElement* tree);
int AddNextRow(cellElement* tree);
<<<<<<< 2c81de90ca42fb8c5d2c30e01bf26df7f9292954:LibList/CellElement.h
void FreeCellElement(cellElement* element);
=======
void removeNextCol(cellElement* list);
void removeNextRow(cellElement* list);
void recursivePrint(cellElement * tree);
>>>>>>> Added funcs about CellElement:CellElement.h
#endif