summaryrefslogtreecommitdiff
path: root/src/statwrapper.h
diff options
context:
space:
mode:
authorNick <[email protected]>2019-09-13 05:29:40 -0400
committerNick <[email protected]>2019-09-13 05:29:40 -0400
commit26ca8de4a6ec9bfe422a14cbe325a5f257df453b (patch)
treeed12425be898e85e01e7a3997a9b8d5efba6ef50 /src/statwrapper.h
parent8dc1567fa99cfcb7d21a80e55dedfe07aaa359bb (diff)
Add src/ director formatting
Diffstat (limited to 'src/statwrapper.h')
-rw-r--r--src/statwrapper.h14
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