15 lines
288 B
C
15 lines
288 B
C
// SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
/*
|
|
* 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 */
|