Hi N07070, > Le 20 mars 2020 à 16:49, N07070 <m...@n07070.xyz> a écrit : > > What I would like, is to be able to call the yyparse function, give it a > string,
yyparse doesn't care about where the text is coming from, that's the job of the scanner. That part is something you'll have to find in your scanner generator. In the case of flex, have a look at yy_scan_string and yy_scan_bytes. Cheers!