Path: csiph.com!weretis.net!feeder6.news.weretis.net!news.misty.com!news.iecc.com!.POSTED.news.iecc.com!nerds-end From: gah4 Newsgroups: comp.compilers Subject: Re: flex and bison grouping Date: Thu, 25 May 2023 17:08:55 -0700 Organization: Compilers Central Sender: johnl@iecc.com Approved: comp.compilers@iecc.com Message-ID: <23-05-033@comp.compilers> References: <23-05-022@comp.compilers> <23-05-032@comp.compilers> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Injection-Info: gal.iecc.com; posting-host="news.iecc.com:2001:470:1f07:1126:0:676f:7373:6970"; logging-data="24916"; mail-complaints-to="abuse@iecc.com" Keywords: lex, debug, comment Posted-Date: 25 May 2023 20:39:43 EDT X-submission-address: compilers@iecc.com X-moderator-address: compilers-request@iecc.com X-FAQ-and-archives: http://compilers.iecc.com In-Reply-To: <23-05-032@comp.compilers> Xref: csiph.com comp.compilers:3488 On Thursday, May 25, 2023 at 5:49:39 AM UTC-7, Archana Deshmukh wrote: (snip) > I am able to write flex tokens and bison parser and able to retrieve tokens > and values. Now, I want to put these values to a list. I implemented with C linked list > with simple structure > struct node{ > char* name; > int dimensions[4]; > char* type; > struct node *next; > }; > I am able to populate the list for "name" parameter. The type is also of type char*. > How, I can differentiate between parameter "char* name" or "char* type" when I populate list. One that you have to be careful about with C in general, and I suspect in this case, is that you might have a pointer to some buffer that is reused. Saving the pointer returned by flex might not help. (I suspect John will tell me if this is wrong.) You often need to allocate new space, and make a copy to save. [You are right -- you need to make a copy of the yytext string in a flex action if you want to keep it. Otherwise it'll be overwritten the next time the lexer reads a block of input text. This is a very common bug. -John]