home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / cprog / ev_201.zip / MODULE.C < prev    next >
C/C++ Source or Header  |  1993-07-03  |  1KB  |  42 lines

  1. /*
  2.    Module        : MODULE.C
  3.    Version       : 2.0
  4.    Revision date : July 3rd, 1993
  5.    Author(s)     : Remy Gendron
  6.  
  7.    Description   : Module file template.
  8. */
  9.  
  10.  
  11. /* Headers --------------------------------------------------------------- */
  12.  
  13. #include <stdio.h>                                   /* System's libraries */
  14. #pragma hdrstop
  15.  
  16. #include "module.h"                           /* This module's header file */
  17.  
  18.  
  19. /* Macros ---------------------------------------------------------------- */
  20.  
  21.  
  22. /* TypeDefs -------------------------------------------------------------- */
  23.  
  24.  
  25. /* ----------------------------------------------------------------------- */
  26.  
  27. return_type function_name                                   /* Description */
  28. (
  29.    type param,                                              /* Description */
  30.    type param,                                              /* Description */
  31.    ...
  32. )
  33.  
  34. {
  35.  
  36.  
  37.    return ;                                     /* End of function comment */
  38. }                                                     /* End function_name */
  39.  
  40.  
  41. /* End source file ------------------------------------------------------- */
  42.