Re: [Eug-lug] C questions

2005-09-20 Thread Bob Miller
Fred James wrote: > All > Can anyone confirm for me that >// > is not an allowed syntax for a commnet line in ANSI C, please? Confirmed for ANSI C prior to C99. Refuted for C99. > Can anyone confirm for me that >_EXPORT is not a part of extern in ANSI C, please? Confirmed. Looks like

Re: [Eug-lug] C questions

2005-09-19 Thread T. Joseph CARTER
On Mon, Sep 19, 2005 at 09:51:16AM -0700, Russ Johnson wrote: > >All > >Can anyone confirm for me that > > // > >is not an allowed syntax for a commnet line in ANSI C, please? > >(example: > > // line of text > >should be > > /* line of text */ > > > It was my understanding that the latter

Re: [Eug-lug] C questions

2005-09-19 Thread Russ Johnson
Fred James wrote: All Can anyone confirm for me that // is not an allowed syntax for a commnet line in ANSI C, please? (example: // line of text should be /* line of text */ It was my understanding that the latter is the only type of comment in C, while both are valid in C++. Rus

[Eug-lug] C questions

2005-09-19 Thread Fred James
All Can anyone confirm for me that // is not an allowed syntax for a commnet line in ANSI C, please? (example: // line of text should be /* line of text */ ) Can anyone confirm for me that _EXPORT is not a part of extern in ANSI C, please? (example: extern _EXPORT DataTable* c