On Tue, Jul 05, 2011 at 01:52:06PM -0400, Todd C. Miller wrote: > if ((p = wcsdup(L"foobar")) == NULL) { > > or just split it into two lines. Using the comma operator that way > is correct but likely to confuse some readers. Also, what is that > 'L' doing there before the "foobar"? Is it some sort of wide char > thing I'm not aware of?
Wide character string literal, yes. Joerg