1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2024-06-02 01:19:38 +00:00

Added funcs about CellElement

This commit is contained in:
Naej 2016-12-10 02:41:43 +01:00
parent ab06b30f00
commit 1dbd0be6c2

View File

@ -37,8 +37,14 @@ struct cellElement {
struct cellElement * nextRow;
};
typedef struct cellElement * cellElement;
typedef struct cellElement cellElement;
int AddNextCol(cellElement* tree);
int AddNextRow(cellElement* tree);
void removeNextCol(cellElement* list);
void removeNextRow(cellElement* list);
void recursivePrint(cellElement * tree);
#endif