mirror of
https://gitlab.com/klmp200/LO27.git
synced 2024-11-19 18:43:19 +00:00
Added funcs about CellElement
This commit is contained in:
parent
ab06b30f00
commit
1dbd0be6c2
@ -37,8 +37,14 @@ struct cellElement {
|
|||||||
struct cellElement * nextRow;
|
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
|
#endif
|
Loading…
Reference in New Issue
Block a user