home *** CD-ROM | disk | FTP | other *** search
- /* ==( bench/helpmsg.c )== */
- /* ----------------------------------------------- */
- /* Pro-C Copyright (C) 1988 - 1990 Vestronix Inc. */
- /* Modification to this source is not supported */
- /* by Vestronix Inc. */
- /* All Rights Reserved */
- /* ----------------------------------------------- */
- /* Written RN 15-Jan-90 */
- /* ----------------------------------------------- */
- /* %W% (%H% %T%) */
-
- # include <stdio.h>
- # include <bench.h>
-
- PROTO (void (*help_func), (int)) = (void (*)())0;
-
- /*
- * call help (if defined)
- */
- void help_msg(hnum)
- int hnum;
- {
- if (hnum < 0)
- return;
-
- if (help_func != (void (*)())0)
- (*help_func)(hnum);
- }
-
-