home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 4 / AACD04.ISO / AACD / Programming / envsof20 / source / syntax / init.c < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-01  |  451 b   |  40 lines

  1. #include "defs.h"
  2.  
  3. /// "prototypes"
  4.  
  5. Prototype BOOL InitC(void);
  6. Prototype void ExitC(void);
  7.  
  8. ///
  9. /// "init"
  10.  
  11. /* ----------------------------------- InitC -----------------------------------
  12.  
  13.  Library startup code (C entry point).
  14.  
  15. */
  16.  
  17. BOOL
  18. InitC(void)
  19. {
  20.     return(TRUE);
  21. }
  22.  
  23. ///
  24. /// "init"
  25.  
  26. /* ----------------------------------- ExitC -----------------------------------
  27.  
  28.  Library startup code (C entry point).
  29.  
  30. */
  31.  
  32. void
  33. ExitC(void)
  34. {
  35.     ;
  36. }
  37.  
  38. ///
  39.  
  40.