home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / c2man-2.0pl33.lha / c2man-2.0 / eg / oldstyle.c < prev    next >
Encoding:
Text File  |  1995-01-14  |  392 b   |  25 lines

  1. /*
  2. ** old-style function starting with a C comment
  3. */
  4. void oldstyle(single_before, multiple_before, end_of_line, multiple_eol)
  5.  
  6. /* single line before */
  7. int single_before;
  8.  
  9. /*
  10.  * multiple
  11.  * lines before
  12.  */
  13. int multiple_before;
  14.  
  15. int end_of_line;    /* end of the line */
  16.  
  17. int multiple_eol;    /*
  18.              * multiple lines
  19.              * starting at
  20.              * the EOL
  21.              */
  22. {
  23.     /* blah, blah, blah, blah, blah! */
  24. }
  25.