mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.pposix: Bind isatty(3)
Useful for disabling certain behavior, ANSI colors etc when not connected to a terminal.
This commit is contained in:
parent
6f60a98b16
commit
b93398ce79
2 changed files with 11 additions and 0 deletions
|
@ -812,6 +812,13 @@ static int lc_atomic_append(lua_State *L) {
|
|||
return 3;
|
||||
}
|
||||
|
||||
static int lc_isatty(lua_State *L) {
|
||||
FILE *f = *(FILE **) luaL_checkudata(L, 1, LUA_FILEHANDLE);
|
||||
const int fd = fileno(f);
|
||||
lua_pushboolean(L, isatty(fd));
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Register functions */
|
||||
|
||||
int luaopen_util_pposix(lua_State *L) {
|
||||
|
@ -853,6 +860,8 @@ int luaopen_util_pposix(lua_State *L) {
|
|||
|
||||
{ "atomic_append", lc_atomic_append },
|
||||
|
||||
{ "isatty", lc_isatty },
|
||||
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue