home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume8 / graph+ / part02 / count.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-03-01  |  567 b   |  31 lines

  1. /*
  2.  * Copyright (C) 1986   Alan Kent
  3.  *
  4.  * Permission is granted to freely distribute part or
  5.  * all of this code as long as it is not for profit
  6.  * and this message is retained in the code.
  7.  *
  8.  * No resposibility is taken for any damage or incorect
  9.  * results this program generates.
  10.  * 
  11.  */
  12.  
  13.  
  14. #include <stdio.h>
  15. #include "graph.h"
  16.  
  17.  
  18. double
  19. count_fun ( table , from , to )
  20. table_st *table;
  21. {
  22.     if ( table == NULL )
  23.     return ( 0.0 );
  24.     if ( to >= table->size )
  25.     to = table->size - 1;
  26.     if ( from > to )
  27.     return ( 0.0 );
  28.     return ( (double) to - from + 1 );
  29. }
  30.  
  31.