# HG changeset patch # User Kim Alvefur # Date 1341323026 -7200 # Node ID 5a6a85719b7b81dfa6b250db36fc095892acac0f # Parent 630cb694b3642c33d06fc5a68d928bd39d35a3e6 util.pposix: Add setenv() diff -r 630cb694b364 -r 5a6a85719b7b util-src/pposix.c --- a/util-src/pposix.c Mon Jun 18 16:57:46 2012 +0100 +++ b/util-src/pposix.c Tue Jul 03 15:43:46 2012 +0200 @@ -581,6 +581,37 @@ return 1; } +int lc_setenv(lua_State* L) +{ + const char *var = luaL_checkstring(L, 1); + const char *value; + + /* If the second argument is nil or nothing, unset the var */ + if(lua_isnoneornil(L, 2)) + { + if(unsetenv(var) != 0) + { + lua_pushnil(L); + lua_pushstring(L, strerror(errno)); + return 2; + } + lua_pushboolean(L, 1); + return 1; + } + + value = luaL_checkstring(L, 2); + + if(setenv(var, value, 1) != 0) + { + lua_pushnil(L); + lua_pushstring(L, strerror(errno)); + return 2; + } + + lua_pushboolean(L, 1); + return 1; +} + /* Register functions */ int luaopen_util_pposix(lua_State *L) @@ -612,6 +643,8 @@ { "uname", lc_uname }, + { "setenv", lc_setenv }, + { NULL, NULL } };