tipe/src/cnn/include/main.h
2023-02-04 13:12:52 +01:00

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