15 lines
347 B
C
Raw Normal View History

2024-01-27 20:04:54 +01:00
/*
2024-07-08 09:52:11 +02:00
* Copyright (C) NHR@FAU, University Erlangen-Nuremberg.
2024-01-27 20:04:54 +01:00
* All rights reserved.
* Use of this source code is governed by a MIT-style
* license that can be found in the LICENSE file.
*/
#ifndef __PROGRESS_H_
#define __PROGRESS_H_
extern void initProgress(double);
extern void printProgress(double);
extern void stopProgress(void);
#endif