diff options
-rw-r--r-- | lapi.c | 24 | ||||
-rw-r--r-- | lua.h | 4 |
2 files changed, 26 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 2.178 2013/04/29 17:12:50 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.179 2013/05/02 12:37:24 roberto Exp roberto $ |
3 | ** Lua API | 3 | ** Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -331,6 +331,28 @@ LUA_API int lua_compare (lua_State *L, int index1, int index2, int op) { | |||
331 | } | 331 | } |
332 | 332 | ||
333 | 333 | ||
334 | LUA_API int lua_cvtonum (lua_State *L, int idx) { | ||
335 | TValue *o = index2addr(L, idx); | ||
336 | if (ttisnumber(o)) return 1; /* already a number? */ | ||
337 | else if (!ttisstring(o)) return 0; /* only strings can be converted */ | ||
338 | else { | ||
339 | lua_Integer i; lua_Number n; | ||
340 | const char *s = svalue(o); | ||
341 | size_t len = tsvalue(o)->len; | ||
342 | if (luaO_str2int(s, len, &i)) { | ||
343 | setivalue(o, i); | ||
344 | return 1; | ||
345 | } | ||
346 | else if (luaO_str2d(s, len, &n)) { | ||
347 | setivalue(o, i); | ||
348 | setnvalue(o, n); | ||
349 | return 1; | ||
350 | } | ||
351 | else return 0; | ||
352 | } | ||
353 | } | ||
354 | |||
355 | |||
334 | LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum) { | 356 | LUA_API lua_Number lua_tonumberx (lua_State *L, int idx, int *pisnum) { |
335 | lua_Number n; | 357 | lua_Number n; |
336 | const TValue *o = index2addr(L, idx); | 358 | const TValue *o = index2addr(L, idx); |
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.287 2013/04/26 13:07:53 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.288 2013/04/26 15:39:25 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -307,6 +307,8 @@ LUA_API int (lua_next) (lua_State *L, int idx); | |||
307 | LUA_API void (lua_concat) (lua_State *L, int n); | 307 | LUA_API void (lua_concat) (lua_State *L, int n); |
308 | LUA_API void (lua_len) (lua_State *L, int idx); | 308 | LUA_API void (lua_len) (lua_State *L, int idx); |
309 | 309 | ||
310 | LUA_API int (lua_cvtonum) (lua_State *L, int idx); | ||
311 | |||
310 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); | 312 | LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud); |
311 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); | 313 | LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud); |
312 | 314 | ||