Files
compilateur-l/header/analyseur_lexical.h
2016-01-19 14:26:58 +01:00

11 lines
186 B
C

#ifndef __LIRE_UNITE__
#define __LIRE_UNITE__
#include "stdio.h"
int yylex(void);
void nom_token( int token, char *nom, char *valeur );
void test_yylex_internal( FILE *yyin );
#endif