diff --git a/LibList/CellElement.h b/LibList/CellElement.h index be01e3b..c0cd57a 100644 --- a/LibList/CellElement.h +++ b/LibList/CellElement.h @@ -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