add min and max
This commit is contained in:
parent
f3f8cb9293
commit
5630568c89
2 changed files with 10 additions and 0 deletions
|
@ -4,4 +4,10 @@
|
|||
/* Transforme une lettre en majuscule */
|
||||
void majuscule(char *lettre);
|
||||
|
||||
/* Renvoie la valeur la plus petite */
|
||||
int min(int a, int b);
|
||||
|
||||
/* Renvoie la valeur la plus grande */
|
||||
int max(int a, int b);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -5,3 +5,7 @@ void majuscule(char *lettre) {
|
|||
*lettre -= 32;
|
||||
}
|
||||
}
|
||||
|
||||
int min(int a, int b) { return a > b ? b : a; }
|
||||
|
||||
int max(int a, int b) { return a > b ? a : b; }
|
||||
|
|
Reference in a new issue