1
0
mirror of https://github.com/lua/lua.git synced 2025-01-14 05:43:00 +08:00

details (casts between 'lua_Number' and 'double')

This commit is contained in:
Roberto Ierusalimschy 2018-03-09 16:24:45 -03:00
parent dbec41f34c
commit 9e3db70482

View File

@ -1,5 +1,5 @@
/*
** $Id: ltests.c,v 2.241 2018/02/20 16:52:50 roberto Exp roberto $
** $Id: ltests.c,v 2.242 2018/02/23 13:13:31 roberto Exp roberto $
** Internal Module for Debugging of the Lua Implementation
** See Copyright Notice in lua.h
*/
@ -957,13 +957,13 @@ static int doonnewstack (lua_State *L) {
static int s2d (lua_State *L) {
lua_pushnumber(L, *cast(const double *, luaL_checkstring(L, 1)));
lua_pushnumber(L, cast_num(*cast(const double *, luaL_checkstring(L, 1))));
return 1;
}
static int d2s (lua_State *L) {
double d = luaL_checknumber(L, 1);
double d = cast(double, luaL_checknumber(L, 1));
lua_pushlstring(L, cast_charp(&d), sizeof(d));
return 1;
}