home *** CD-ROM | disk | FTP | other *** search
- /* ------------------------------------------------- */
- /* FFH-TEST.C */
- /* testet die Hilfe-Routinen aus FFH-LIB */
- /* (c) 1991 Axel Geßner & DMV-Verlag */
- /* ------------------------------------------------- */
- #include <string.h>
- #include <stdio.h>
- #include "ffh-lib.h"
- #include <alloc.h>
-
- int stop = 0;
-
- void main()
- {
- int ffhc;
- char t[80];
-
- initFFHlib();
- cmpstr = stricmp; /* ignore case */
- ffhc = inithelp ("ffhc.fhd");
- do { /* Endlosschleife; stop mit Evaluate setzen */
- printf ("\nHilfe zu: "); gets (t);
- showhelp (ffhc, t);
- } while (!stop);
-
- exithelp (ffhc);
- puts ("\n");
- }
- /* ------------------------------------------------- */
- /* Ende von FFH-TEST.C */
-
-