15 lines
285 B
C++
15 lines
285 B
C++
/***
|
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: ConsoleTTY.Unix.hpp
|
|
Date: 2022-5-2
|
|
Author: Reece
|
|
***/
|
|
#pragma once
|
|
|
|
namespace Aurora::Console::ConsoleTTY
|
|
{
|
|
bool IsBuffering();
|
|
void BeginBuffering();
|
|
bool EndBuffering();
|
|
} |