Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Histogram
changeset 1:dbb58ebfd690
testing
| author | Me |
|---|---|
| date | Sat, 11 Sep 2010 04:46:29 -0700 |
| parents | 6e864a0cb520 |
| children | 06128e387cfa 13b8591dd045 |
| files | Histogram.h |
| diffstat | 1 files changed, 33 insertions(+), 33 deletions(-) [+] |
line diff
1.1 --- a/Histogram.h Sat Sep 11 04:41:55 2010 -0700 1.2 +++ b/Histogram.h Sat Sep 11 04:46:29 2010 -0700 1.3 @@ -1,33 +1,33 @@ 1.4 -/* 1.5 - * Copyright 2010 OpenSourceStewardshipFoundation.org 1.6 - * Licensed under GNU General Public License version 2 1.7 - * 1.8 - * Author: seanhalle@yahoo.com 1.9 - * 1.10 - */ 1.11 - 1.12 - 1.13 -#ifndef _HISTOGRAM_H 1.14 -#define _HISTOGRAM_H 1.15 - 1.16 -typedef struct 1.17 - { 1.18 - int startOfRange; 1.19 - int endOfRange; 1.20 - int numBins; 1.21 - int binWidth; 1.22 - int *bins; 1.23 - } 1.24 -Histogram; 1.25 - 1.26 -Histogram * 1.27 -makeHistogram( int numBins, int startOfRange, int endOfRange ); 1.28 - 1.29 -void 1.30 -addToHist( int value, Histogram *hist ); 1.31 - 1.32 -void 1.33 -printHist( Histogram *hist ); 1.34 - 1.35 -#endif /* _HISTOGRAM_H */ 1.36 - 1.37 +/* 1.38 + * Copyright 2010 OpenSourceStewardshipFoundation.org 1.39 + * Licensed under GNU General Public License version 2 1.40 + * 1.41 + * Author: seanhalle@yahoo.com 1.42 + * 1.43 + */ 1.44 + 1.45 + 1.46 +#ifndef _HISTOGRAM_H 1.47 +#define _HISTOGRAM_H 1.48 + 1.49 +typedef struct 1.50 + { 1.51 + int startOfRange; 1.52 + int endOfRange; 1.53 + int numBins; 1.54 + int binWidth; 1.55 + int *bins; 1.56 + } 1.57 +Histogram; 1.58 + 1.59 +Histogram * 1.60 +makeHistogram( int numBins, int startOfRange, int endOfRange ); 1.61 + 1.62 +void 1.63 +addToHist( int value, Histogram *hist ); 1.64 + 1.65 +void 1.66 +printHist( Histogram *hist ); 1.67 + 1.68 +#endif /* _HISTOGRAM_H */ 1.69 +
