2010-08-08 10:06:34 +02:00
|
|
|
#ifndef H_GC_SUMMARY
|
|
|
|
#define H_GC_SUMMARY
|
|
|
|
|
2017-01-10 18:20:47 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-30 20:37:14 +01:00
|
|
|
struct summary;
|
2014-08-27 06:40:18 +02:00
|
|
|
|
2018-01-28 11:37:42 +01:00
|
|
|
void report_summary(const struct summary *sum, bool full);
|
2015-01-30 20:37:14 +01:00
|
|
|
struct summary *make_summary(void);
|
2016-09-09 17:20:09 +02:00
|
|
|
void free_summary(struct summary *sum);
|
2015-01-30 20:37:14 +01:00
|
|
|
int update_nmrs(void);
|
|
|
|
extern int* nmrs;
|
2014-08-27 06:40:18 +02:00
|
|
|
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|