Re: [Flex-devel] unicode unsigned short
flex is a tool for generating scanners
Brought to you by:
wlestes
From: Paul <pa...@pr...> - 2012-07-06 16:34:08
|
using gcc & glibc <stdint.h> uint16_t *x=UINT16_C("ababab"); compiles to: in hex: 6261, 6261, 6261,0 Thus the initialization problem asked about is still not solved. Paul On 07/06/2012 12:11 PM, Peter Martini wrote: > Sorry, sent from my phone, I did mean uint16_t :-) And I thought that > it was mandated by C99 - is there something in particular that doesn't > support it? > > On Fri, Jul 6, 2012 at 12:08 PM, Paul <pa...@pr... > <mailto:pa...@pr...>> wrote: > > No Uint16t in gcc. Is a Micrsoft-ism. > > glibc has <stdint.h> which has uint16_t but not universal. > > Paul > > On 07/06/2012 11:36 AM, Peter Martini wrote: > > > Uint16t? > > > > |