7 lines
97 B
Text
7 lines
97 B
Text
|
#pragma once
|
||
|
|
||
|
namespace std {
|
||
|
template<class CharT> void setfill(CharT c);
|
||
|
void setw(int);
|
||
|
}
|