home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 185_01 / cflow.flo < prev    next >
Text File  |  1985-08-21  |  2KB  |  119 lines

  1. ************************************************************************
  2. *                                                                      *
  3. *    Below is an example of CFLOW output -- this one is              *
  4. *    CFLOW run on CFLOW.C and routed to a disk file (cflow.flo).    *
  5. *    The text here within the asterixes was NOT generated.           *
  6. *                                                                      *
  7. ************************************************************************
  8.  
  9.  
  10. CFLOW --> function declarations and calls in C source
  11.  by Mark Ellington
  12. Source file: B:CFLOW.C
  13.  
  14.  
  15. **
  16. main(argc,argv)
  17. int argc; char *argv[];
  18.  
  19.     printf()
  20.     printf()
  21.         printf()
  22.         exit()
  23.     fopen()
  24.         printf()
  25.         exit()
  26.     printf()
  27.     modules()
  28.     fclose()
  29.  
  30.  
  31. **
  32. modules()    
  33.  
  34.         fgets()
  35.             skipline()
  36.             quotes()
  37.             comment()
  38.                         ischar()
  39.                         lookbak()
  40.                         modname()
  41.         comout()
  42.         printf()
  43.  
  44.  
  45. **
  46. skipline()
  47.  
  48.     strcmp()
  49.  
  50.  
  51. **
  52. quotes()
  53.  
  54.     flowchar()
  55.  
  56.  
  57. **
  58. comment(incom)
  59. int incom;
  60.  
  61.  
  62.  
  63. **
  64. lookbak(n)
  65. int n;
  66.  
  67.     ischar()
  68.     ischar()
  69.         ischar()
  70.     comout()
  71.  
  72.  
  73. **
  74. comout(s)
  75. char *s;
  76.  
  77.  
  78.  
  79. **
  80. modname()
  81.  
  82.     unreserved()
  83.             printf()
  84.             printf()
  85.             comout()
  86.             printf()
  87.             printf()
  88.             putchar()
  89.             printf()
  90.  
  91.  
  92. **
  93. unreserved()
  94.  
  95.     strcmp()
  96.     strcmp()
  97.     strcmp()
  98.     strcmp()
  99.     strcmp()
  100.  
  101.  
  102. **
  103. flowchar(c)
  104. char c;
  105.  
  106.  
  107.  
  108. **
  109. ischar(c)
  110. char c;
  111.  
  112.     isalpha()
  113.     isdigit()
  114.  
  115.  
  116. **
  117. fgets()
  118.  
  119.