This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| /* printf example: progress bar */ | |
| /* by unveres, 2018 */ | |
| /* more at gist.github.com/unveres */ | |
| /* look at that 25th line of code, it shows the true power of printf */ | |
| #define BARSIZE (50) |