home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 September / Simtel20_Sept92.cdr / msdos / turbo_c / turbbook.arc / NOTE.C < prev    next >
Text File  |  1987-08-20  |  168b  |  15 lines

  1. /* ----- note.c ------ */
  2.  
  3. #include "twindow.h"
  4.  
  5. void notepad(void);
  6. char notefile [] = "note.pad";
  7.  
  8. main()
  9. {
  10.     load_help("tcprogs.hlp");
  11.     notepad();
  12. }
  13.  
  14.  
  15.