mirror of
https://github.com/augustin64/projet-tipe
synced 2025-03-14 14:55:22 +01:00
14 lines
227 B
C
14 lines
227 B
C
|
#ifndef DEF_MAIN_H
|
||
|
#define DEF_MAIN_H
|
||
|
|
||
|
/*
|
||
|
* Affiche les arguments potentiels à l'utilisateur.
|
||
|
*/
|
||
|
void help(char* call);
|
||
|
|
||
|
/*
|
||
|
* Fonction utilisée à des fins de développement du réseau convolutif
|
||
|
*/
|
||
|
void dev_conv();
|
||
|
|
||
|
#endif
|