From f379d06e24f22cb4d0afa3937c27ef35b73b00a6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Mon, 30 Oct 2000 10:38:50 -0200 Subject: all API functions are declared in a single line (to facilitate pre-processing). --- lauxlib.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lauxlib.c') diff --git a/lauxlib.c b/lauxlib.c index 97e8c896..a817f613 100644 --- a/lauxlib.c +++ b/lauxlib.c @@ -1,5 +1,5 @@ /* -** $Id: lauxlib.c,v 1.40 2000/10/20 16:39:03 roberto Exp roberto $ +** $Id: lauxlib.c,v 1.41 2000/10/27 16:15:53 roberto Exp roberto $ ** Auxiliary functions for building Lua libraries ** See Copyright Notice in lua.h */ @@ -75,8 +75,7 @@ LUALIB_API const char *luaL_check_lstr (lua_State *L, int narg, size_t *len) { } -LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, - size_t *len) { +LUALIB_API const char *luaL_opt_lstr (lua_State *L, int narg, const char *def, size_t *len) { if (lua_isnull(L, narg)) { if (len) *len = (def ? strlen(def) : 0); -- cgit v1.2.3-55-g6feb