11 lines
150 B
C
11 lines
150 B
C
#ifndef LEXER_H_
|
|
#define LEXER_H_
|
|
|
|
struct Programm {
|
|
char** tokens;
|
|
int taille;
|
|
};
|
|
|
|
struct Programm* lexer(char* chaine);
|
|
|
|
#endif // LEXER_H_
|