tipe/src/cnn/include/main.h

14 lines
193 B
C
Raw Normal View History

2022-10-01 17:53:14 +02:00
#ifndef DEF_MAIN_H
#define DEF_MAIN_H
/*
* Affiche les arguments potentiels à l'utilisateur.
*/
void help(char* call);
/*
2023-02-04 13:12:52 +01:00
* Fonction principale
2022-10-01 17:53:14 +02:00
*/
2023-02-04 13:12:52 +01:00
int main(int argc, char* argv[]);
2022-10-01 17:53:14 +02:00
#endif