summaryrefslogtreecommitdiff
path: root/src/status.h
blob: 5adfff55bafd8cdad9662056a07adb20175fc931 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef STATUS_H_
#define STATUS_H_

#include <stdbool.h>

typedef enum stat_type { SIZE_BYTES, TIME_SECS } stat_type_t;

typedef struct status {
  unsigned long long cur;
  unsigned long long total;
  bool is_done;
  stat_type_t type;
} status_t;


#endif