home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / PROGRAM / C / CDOS10 / FUNCTION.C < prev    next >
C/C++ Source or Header  |  1992-07-07  |  1KB  |  46 lines

  1. /*
  2.    Module        :
  3.    Version       :
  4.    Revision date :
  5.    Programmer    :
  6.  
  7.    Description   :
  8. */
  9.  
  10.  
  11. /*----- Library Header Files ----------------------------------------------*/
  12. /*----- Global Macros -----------------------------------------------------*/
  13.  
  14. #include "stdmacro.h"
  15.  
  16.  
  17. /*----- Global TypeDefs ---------------------------------------------------*/
  18.  
  19. #include "stdtype.h"
  20.  
  21.  
  22. /*----- Local Header Files ------------------------------------------------*/
  23.  
  24. #include "function.h"
  25.  
  26.  
  27. /*----- Local Macros ------------------------------------------------------*/
  28. /*----- Local TypeDefs ----------------------------------------------------*/
  29. /*----- Global Variables --------------------------------------------------*/
  30. /*----- Function Definition -----------------------------------------------*/
  31.  
  32. type function_name                                          /* Description */
  33.  
  34. ( type     param,                                           /* Description */
  35.   type     param,                                           /* Description */
  36.   ...
  37. )
  38.  
  39. {
  40.  
  41.    return ;                                     /* End of function comment */
  42. }                                                     /* End function_name */
  43.  
  44.  
  45. /*-------------------------------------------------------------------------*/
  46.