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
1 changed files with 10 additions and 1 deletions

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