#ifndef LEXER_H_ #define LEXER_H_ struct Programm { char** tokens; int taille; }; struct Programm* lexer(char* chaine); #endif // LEXER_H_