summaryrefslogtreecommitdiff
path: root/src/statwrapper.h
diff options
context:
space:
mode:
authorNick <[email protected]>2019-09-13 07:48:08 -0400
committerNick <[email protected]>2019-09-13 07:48:08 -0400
commitae63df6d86f995876f38ab3cdf47eac61ccda8cd (patch)
treecd789844612b2a2d85fbd574926da02d9e4bee15 /src/statwrapper.h
parent9b1e6dba9f721c772e801abc4851a88aa61929da (diff)
Revert "Add src/ director formatting"
This reverts commit 26ca8de4a6ec9bfe422a14cbe325a5f257df453b.
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 4c00447..65c2ab9 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