lua_Number lua_tonumber (lua_State *L, int index);
Converts the Lua value at the given acceptable index to the C type lua_Number
(see lua_Number
). The Lua value must be a number or a string convertible to a number (see Coercion); otherwise, lua_tonumber
returns 0.