From 1f9341efae92b1d8f0a5b7731eecdf008d80d517 Mon Sep 17 00:00:00 2001 From: Naej <0mindstorming@gmail.com> Date: Sat, 10 Dec 2016 02:41:43 +0100 Subject: [PATCH] Added funcs about CellElement --- LibList/CellElement.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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