| 311 | |
| 312 | |
| 313 | LUA_API lua_Number lua_tonumber (lua_State *L, int idx) { |
| 314 | TValue n; |
| 315 | const TValue *o = index2adr(L, idx); |
| 316 | if (tonumber(o, &n)) |
| 317 | return nvalue(o); |
| 318 | else |
| 319 | return 0; |
| 320 | } |
| 321 | |
| 322 | |
| 323 | LUA_API lua_Integer lua_tointeger (lua_State *L, int idx) { |
no test coverage detected