forked from github/server
23 lines
359 B
C
23 lines
359 B
C
#ifndef H_GC_SUMMARY
|
|
#define H_GC_SUMMARY
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct summary;
|
|
|
|
void report_summary(const struct summary *sum, bool full);
|
|
struct summary *make_summary(void);
|
|
void free_summary(struct summary *sum);
|
|
int update_nmrs(void);
|
|
extern int* nmrs;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|