11 lines
134 B
C++
11 lines
134 B
C++
|
#include "./system.hpp"
|
||
|
|
||
|
#include <unistd.h>
|
||
|
|
||
|
|
||
|
bool
|
||
|
cruft::debug::is_interactive_console (void)
|
||
|
{
|
||
|
return isatty (STDIN_FILENO);
|
||
|
}
|