13 lines
202 B
C
13 lines
202 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdio_ext.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
|
|
typedef struct Programme {
|
|
char **tokens;
|
|
int taille;
|
|
}Programme;
|
|
|
|
Programme *lexer(char *chaine);
|