diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-30 10:38:50 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-10-30 10:38:50 -0200 |
commit | f379d06e24f22cb4d0afa3937c27ef35b73b00a6 (patch) | |
tree | e87e3def52e622040ec2724433e21daee8322ee3 /lauxlib.c | |
parent | 728ff2070135b54c544b90020be268f53bf2d15a (diff) | |
download | lua-f379d06e24f22cb4d0afa3937c27ef35b73b00a6.tar.gz lua-f379d06e24f22cb4d0afa3937c27ef35b73b00a6.tar.bz2 lua-f379d06e24f22cb4d0afa3937c27ef35b73b00a6.zip |
all API functions are declared in a single line (to facilitate pre-processing).
Diffstat (limited to 'lauxlib.c')
-rw-r--r-- | lauxlib.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lauxlib.c,v 1.40 2000/10/20 16:39:03 roberto Exp roberto $ | 2 | ** $Id: lauxlib.c,v 1.41 2000/10/27 16:15:53 roberto Exp roberto $ |
3 | ** Auxiliary functions for building Lua libraries | 3 | ** Auxiliary functions for building Lua libraries |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -75,8 +75,7 @@ LUALIB_API const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) { | |||
75 | } | 75 | } |
76 | 76 | ||
77 | 77 | ||
78 | LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, | 78 | LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, size_t *len) { |
79 | size_t *len) { | ||
80 | if (lua_isnull(L, narg)) { | 79 | if (lua_isnull(L, narg)) { |
81 | if (len) | 80 | if (len) |
82 | *len = (def ? strlen(def) : 0); | 81 | *len = (def ? strlen(def) : 0); |