summaryrefslogtreecommitdiff
path: root/src/intersim/statwraper.h
blob: 35ca6deea939ba47f82997761e06dc55d1101f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef STAT_WRAPER_H
#define STAT_WRAPER_H

void* StatCreate (const char * name, double bin_size, int num_bins) ;
void StatClear(void * st);
void StatAddSample (void * st, int val);
double StatAverage(void * st) ;
double StatMax(void * st) ;
double StatMin(void * st) ;
void StatDisp (void * st);
void StatDumptofile (void * st, FILE f);

#endif