display_progress.h 364 B

1234567891011121314
  1. #ifndef __DISPLAY_PROGRESS_H__
  2. #define __DISPLAY_PROGRESS_H__
  3. #define PROGRESS_BAR_WIDTH 50 // width of the progress bar on screen
  4. /**
  5. * Display progress of an operation
  6. *
  7. * @param cur Number of current itteration
  8. * @param total Total number of iterations
  9. */
  10. void display_progress(unsigned int cur, unsigned int total);
  11. #endif // __DISPLAY_PROGRESS_H__