diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-05-27 16:09:39 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1998-05-27 16:09:39 -0300 |
| commit | 74719afc333a70dae37aa6014ee1bd50ec8aa895 (patch) | |
| tree | c523b3b79a5fb9f9bf7ef9695ba78fb78988d724 /lmathlib.c | |
| parent | 7e59a8901d063dbea4eb0693c9c2d85bda1fc5f6 (diff) | |
| download | lua-github-74719afc333a70dae37aa6014ee1bd50ec8aa895.tar.gz | |
new functions "frexp" and "ldexp"
Diffstat (limited to 'lmathlib.c')
| -rw-r--r-- | lmathlib.c | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* -** $Id: lmathlib.c,v 1.7 1997/12/09 13:35:19 roberto Exp roberto $ +** $Id: lmathlib.c,v 1.8 1997/12/26 18:36:31 roberto Exp roberto $ ** Lua standard mathematical library ** See Copyright Notice in lua.h */ @@ -115,6 +115,16 @@ static void math_rad (void) lua_pushnumber(luaL_check_number(1)*(PI/180.0)); } +static void math_frexp (void) { + int e; + lua_pushnumber(frexp(luaL_check_number(1), &e)); + lua_pushnumber(e); +} + +static void math_ldexp (void) { + lua_pushnumber(ldexp(luaL_check_number(1), luaL_check_number(2))); +} + static void math_min (void) @@ -170,10 +180,12 @@ static struct luaL_reg mathlib[] = { {"asin", math_asin}, {"acos", math_acos}, {"atan", math_atan}, -{"atan2", math_atan2}, +{"atan2", math_atan2}, {"ceil", math_ceil}, {"floor", math_floor}, {"mod", math_mod}, +{"frexp", math_frexp}, +{"ldexp", math_ldexp}, {"sqrt", math_sqrt}, {"min", math_min}, {"max", math_max}, |
