9 lines
100 B
C++
9 lines
100 B
C++
|
#ifndef PROGRESS_HPP
|
||
|
#define PROGRESS_HPP
|
||
|
|
||
|
namespace ProgressBar {
|
||
|
void print(int perc);
|
||
|
};
|
||
|
|
||
|
#endif
|