Re: yy_scan_string

2009-10-14 Thread never2di
Luca-63 wrote: > > never2di ha scritto: >> I'm a newbie to Bison + Flex. and I'm having trouble in getting >> yy_scan_string to work. I have tried the following >> >> YY_BUFFER_STATE my_string_buffer = yy_scan_string(my_string); >> yyparse(); >

Re: yy_scan_string

2009-10-14 Thread never2di
Philip Herron wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > never2di wrote: >> I'm a newbie to Bison + Flex. and I'm having trouble in getting >> yy_scan_string to work. I have tried the following >> >> YY_BUFFER_STATE my_stri

yy_scan_string

2009-10-14 Thread never2di
I'm a newbie to Bison + Flex. and I'm having trouble in getting yy_scan_string to work. I have tried the following YY_BUFFER_STATE my_string_buffer = yy_scan_string(my_string); yyparse(); yy_delete_buffer(my_string_buffer ); the parser errors out with a syntax error at the first token. I have ve