'lua_strtonum' -> 'lua_stringtonum'

This commit is contained in:
Roberto Ierusalimschy
2014-10-15 11:27:40 -03:00
parent 56d4537879
commit 89602bf747
4 changed files with 9 additions and 9 deletions

4
lua.h
View File

@@ -1,5 +1,5 @@
/*
** $Id: lua.h,v 1.316 2014/10/04 22:57:36 roberto Exp roberto $
** $Id: lua.h,v 1.317 2014/10/07 18:29:13 roberto Exp roberto $
** Lua - A Scripting Language
** Lua.org, PUC-Rio, Brazil (http://www.lua.org)
** See Copyright Notice at the end of this file
@@ -321,7 +321,7 @@ LUA_API int (lua_next) (lua_State *L, int idx);
LUA_API void (lua_concat) (lua_State *L, int n);
LUA_API void (lua_len) (lua_State *L, int idx);
LUA_API size_t (lua_strtonum) (lua_State *L, const char *s);
LUA_API size_t (lua_stringtonum) (lua_State *L, const char *s);
LUA_API lua_Alloc (lua_getallocf) (lua_State *L, void **ud);
LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);