8 lines
206 B
C++
Executable file
8 lines
206 B
C++
Executable file
#pragma once
|
|
namespace fc
|
|
{
|
|
/** enables / disables echoing of console input, useful for
|
|
* entering passwords on the console.
|
|
*/
|
|
void set_console_echo( bool enable_echo );
|
|
} // namespace fc
|