Ajout de OR et AND

This commit is contained in:
Antoine Bartuccio 2016-12-26 18:16:37 +01:00
parent 85872acc6e
commit b063bc42c0
3 changed files with 33 additions and 1 deletions

View File

@ -137,3 +137,19 @@ void FreeCellElement(cellElement* element) {
element = NULL;
}
bool OR(bool a, bool b){
if (a || b){
return true;
} else {
return false;
}
}
bool AND(bool a, bool b){
if (a && b){
return true;
} else {
return false;
}
}

View File

@ -144,4 +144,21 @@ int SetNextRow(cellElement* tree,cellElement* elem);
void recursivePrint(cellElement * tree);
/**
* Apply OR operator to a bool a and a bool b
* @param a a bool
* @param b a bool
* @return result a or b
*/
bool OR(bool a, bool b);
/**
* Apply AND operator to a bool a and a bool b
* @param a a bool
* @param b a bool
* @return result a and b
*/
bool AND(bool a, bool b);
#endif

View File

@ -311,7 +311,6 @@ Matrix freeMatrix(Matrix matrix){
}
/* todos :
*finir le freeMatrix
*chasser les bugs