mirror of
https://github.com/augustin64/projet-tipe
synced 2025-03-14 06:45:22 +01:00
14 lines
193 B
C
14 lines
193 B
C
#ifndef DEF_MAIN_H
|
|
#define DEF_MAIN_H
|
|
|
|
/*
|
|
* Affiche les arguments potentiels à l'utilisateur.
|
|
*/
|
|
void help(char* call);
|
|
|
|
/*
|
|
* Fonction principale
|
|
*/
|
|
int main(int argc, char* argv[]);
|
|
|
|
#endif |