aboutsummaryrefslogtreecommitdiff
path: root/external/pflash/progress.h
blob: efe70c685a688ded3197f69f0d0aea6c16b66ac0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: Apache-2.0
/*
 * Copyright 2014-2017 IBM Corp.
 */

#ifndef __PROGRESS_H
#define __PROGRESS_H

#include <inttypes.h>

void progress_init(uint64_t count);
void progress_tick(uint64_t cur);
void progress_end(void);

#endif /* __PROGRESS_H */