File: progress.h

package info (click to toggle)
libvcflib 1.0.12%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 70,520 kB
  • sloc: cpp: 39,837; python: 532; perl: 474; ansic: 317; ruby: 295; sh: 254; lisp: 148; makefile: 123; javascript: 94
file content (21 lines) | stat: -rw-r--r-- 326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Simple progress bar implementation in C.
 *
 *
 */

#pragma once

#include <sys/stat.h>

#ifdef __cplusplus
extern "C" {
#endif

    extern off_t get_file_size(const char *filename);
    extern void print_progress(double percentage, uint64_t start);
    extern uint64_t get_timestamp(void);

#ifdef __cplusplus
}
#endif