1
0
mirror of https://gitlab.com/klmp200/LO27.git synced 2025-07-13 21:59:23 +00:00

Ajouté les fx ds le .h

This commit is contained in:
Naej
2016-12-11 03:25:21 +01:00
parent 3dac9bc5f4
commit 9535e1e696
3 changed files with 29 additions and 15 deletions

View File

@ -81,8 +81,6 @@ void removeNextCol(cellElement* tree);
*/
void removeNextRow(cellElement* tree);
void recursivePrint(cellElement * tree);
/*---FreeCellElem---
*Allocates a cellElement and returns it
@ -92,4 +90,15 @@ void recursivePrint(cellElement * tree);
*/
void FreeCellElement(cellElement* element);
bool is_leaf(cellElement* tree);
int SetPositionIndex(cellElement* elem,int Col,int Row);
int SetNextCol(cellElement* tree,cellElement* elem);
int SetNextRow(cellElement* tree,cellElement* elem);
void recursivePrint(cellElement * tree);
#endif