lua-users home
lua-l archive

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


>I believe that many C++ developers use lua these days.
>Although the lua interpreter is written in C, it would be nice if the 3 main
>headers had extern "C" declarations in them.

This is a frequent request. However, Lua's implementation compiles under both
C and C++. Adding extern "C" would force it to be a C library instead of a C++
library.
--lhf