Mercurial > cgi-bin > hgwebdir.cgi > VMS > C_Libraries > Histogram
diff Histogram.h @ 5:13b8591dd045
added addInterval -- is old version, have to merge with VMS__malloc version
| author | SeanHalle |
|---|---|
| date | Thu, 11 Nov 2010 05:37:07 -0800 |
| parents | dbb58ebfd690 |
| children | a2388fae93ff |
line diff
1.1 --- a/Histogram.h Sat Sep 11 04:46:29 2010 -0700 1.2 +++ b/Histogram.h Thu Nov 11 05:37:07 2010 -0800 1.3 @@ -21,10 +21,13 @@ 1.4 Histogram; 1.5 1.6 Histogram * 1.7 -makeHistogram( int numBins, int startOfRange, int endOfRange ); 1.8 +makeHistogram( int32 numBins, int32 startOfRange, int32 endOfRange ); 1.9 1.10 -void 1.11 -addToHist( int value, Histogram *hist ); 1.12 +void inline 1.13 +addToHist( int32 value, Histogram *hist ); 1.14 + 1.15 +void inline 1.16 +addIntervalToHist( int32 startIntvl, int32 endIntvl, Histogram *hist ); 1.17 1.18 void 1.19 printHist( Histogram *hist );
