lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> > Doesn't Lua 5.2 already support those?
> 
> I thought they were a C99 feature...

They are, but the part that Lua needs depends only on libraries, so
it is easier to handle. For "reading" hexa-floats, Lua has its own
implementation. For "writing" them it uses conditional compilation.
(In particular, Microsoft supports '%a'...)

-- Roberto