libhaunp, libha: crc module can be disabled now; libha: unpacked can be disabled
[libha.git] / src / pbar.h
blob3d233d01bd04803c6fbaf2b95219d511b1605283
1 /* coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
2 * Understanding is not required. Only obedience.
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef _PBAR_H_
18 #define _PBAR_H_
20 #include <stdint.h>
23 extern void pbar_draw (uint64_t cur, uint64_t total, uint64_t taken);
24 extern void pbar_clear (void);
25 extern void pbar_newline (void);
27 /* get dot count; can be used to avoid excess redraws */
28 extern int pbar_dot_count (uint64_t cur, uint64_t total, uint64_t taken);
30 /* dest: at least 92 bytes */
31 extern void pbar_u2s (char *dest, uint64_t i);
34 #endif