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 / boxcomment.c next >
Encoding:
Text File  |  1995-01-14  |  1.3 KB  |  35 lines

  1. /***************************************************************************
  2.  * C style box comment.
  3.  *
  4.  * This function has a very pretty C style box comment.
  5.  ***************************************************************************/
  6. void boxcomm_c1(void);
  7.  
  8. /***************************************************************************
  9. / Fancier C style box comment.
  10. /
  11. / This function has a very pretty C style box comment.
  12. /***************************************************************************/
  13. void boxcomm_c2(void);
  14.  
  15. /***************************************************************************
  16. /*** Even Fancier C style box comment.
  17. /***
  18. /*** This function has a very pretty C style box comment.
  19. /***************************************************************************/
  20. void boxcomm_c3(void);
  21.  
  22. ////////////////////////////////////////////////////////////////////////////
  23. // C++ style box comment.
  24. //
  25. // This function has a very pretty C++ style box comment.
  26. ////////////////////////////////////////////////////////////////////////////
  27. void boxcomm_cpp1(void);
  28.  
  29. ////////////////////////////////////////////////////////////////////////////
  30. //// Fancier C++ style box comment.
  31. ////
  32. //// This function has a very pretty C++ style box comment.
  33. ////////////////////////////////////////////////////////////////////////////
  34. void boxcomm_cpp2(void);
  35.