home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / dflat.zip / HELPTEXT.C < prev    next >
Text File  |  1991-02-10  |  357b  |  23 lines

  1. /* ----------- helptext.c ---------- */
  2.  
  3. #include <stdio.h>
  4. #include "help.h"
  5.  
  6. char *helphelp[] =
  7.                         "Help for help",
  8.                         "«Context-sensitive help»\n"
  9.                         "«Extended help»\n"
  10.                         "«Help for keys»\n"
  11.                         NULL
  12. };
  13.  
  14. char *extdhelp[] =
  15.                         "Extended help",
  16.                         NULL
  17. };
  18.  
  19. char *keyshelp[] =    {
  20.                         "Keys help",
  21.                         NULL
  22. };
  23.