Révision 172
Ajouté par Florentin GAMEL il y a environ 3 ans
branch/gamel/sp4a12/main.c | ||
---|---|---|
}
|
||
|
||
|
||
int decode_nombre(char*ch,int n){
|
||
int temp=0;
|
||
int i;
|
||
for(i=0;i<n;i++){
|
||
temp=(temp*10)+decode_int(ch[i]);
|
||
}
|
||
return temp;
|
||
}
|
||
|
||
|
||
|
||
//Ajouter vos tests unitaires dans cette fonction.
|
||
void tests_unitaires(void){
|
Formats disponibles : Unified diff
Question 7 pas terminée