C_TP_Forth/lexer.h
2022-12-08 06:11:40 +01:00

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_