diff options
| author | Tor Aamodt <[email protected]> | 2020-05-21 08:57:11 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-05-21 08:57:11 -0700 |
| commit | 76217d80d9aa33126b4254f5e899f882bbc6f2fd (patch) | |
| tree | 4f461a6f417f76956748fafcfb89b664f54bf6a9 /src/statwrapper.h | |
| parent | e7fbfaa347c0acf8a6702c1e684a8e2ad8d3f733 (diff) | |
| parent | e9e9fcf5957530ecb927aecb5ea238e4b78a4f45 (diff) | |
Merge pull request #178 from purdue-aalp/dev
Merging with the last few months of work at Purdue
Diffstat (limited to 'src/statwrapper.h')
| -rw-r--r-- | src/statwrapper.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/statwrapper.h b/src/statwrapper.h index 65c2ab9..4c00447 100644 --- a/src/statwrapper.h +++ b/src/statwrapper.h @@ -1,12 +1,12 @@ #ifndef STAT_WRAPER_H #define STAT_WRAPER_H -class Stats* 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); +class Stats* 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); #endif |
