25 lines
400 B
C
25 lines
400 B
C
#ifndef BIBLIO_H_INCLUDED
|
|
#define BIBLIO_H_INCLUDED
|
|
|
|
char* moisNom(int numeroMois);
|
|
|
|
char* supprimerE(char chaine[]);
|
|
|
|
char* saisirChaine(char *message);
|
|
|
|
void swapFloat(float *ptr1, float *ptr2);
|
|
|
|
void discriminant(float a, float b, float c, float *racine1, float *racine2);
|
|
|
|
void exercice1();
|
|
|
|
void exercice2();
|
|
|
|
void exercice3();
|
|
|
|
void exercice4();
|
|
|
|
void exercice5();
|
|
|
|
#endif // BIBLIO_H_INCLUDED
|