home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_10 / 9n10024c < prev    next >
Text File  |  1991-08-14  |  313b  |  13 lines

  1.  
  2. /* --------------------------------------------------------------
  3.  
  4. FUNCTION COUNT_NODES: Just display the counter we've been keeping.
  5.  
  6. -------------------------------------------------------------- */
  7.  
  8. void count_nodes(void)
  9. {
  10.         printf("\n\tThere are %u nodes in the list\n", nodes_in_use);
  11. }
  12.  
  13.