17 lines
199 B
C
17 lines
199 B
C
#include "y_test_h.h"
|
|
|
|
IMPLEMENTATION_PROGRESS_BAR()
|
|
|
|
int main(){
|
|
|
|
bar_progress_start();
|
|
int n=221;
|
|
|
|
for(int i=0; i<n; ++i){
|
|
//sleep(2222);
|
|
bar_progress_step(i/n);
|
|
}
|
|
|
|
return 0;
|
|
}
|