m2.alobe/src/progressindicator.h

14 lines
176 B
C
Raw Permalink Normal View History

#ifndef _PROGESS_INDICATOR_H
#define _PROGESS_INDICATOR_H
static char* progress_indicator_table[] = {
"[|]",
"[/]",
"[-]",
"[\\]"
};
char * progress_indicator();
#endif