home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Guide
/
c-cplusplus-interactive-guide.iso
/
c_ref
/
csource3
/
187_01
/
help.c
< prev
next >
Wrap
Text File
|
1985-12-30
|
944b
|
29 lines
/*@*****************************************************/
/*@ */
/*@ help - output help data structure. Parameter is */
/*@ assumed to be an array of pointers to */
/*@ strings giving help. The last one must */
/*@ be an empty string. */
/*@ */
/*@ Usage: help(str); */
/*@ where str is a pointer to the array. */
/*@ (see most pgms in CPGMS.ARC). */
/*@ */
/*@*****************************************************/
/*******************************************************/
help(hp)
char **hp; /* dns added extra '*' */
/*
* Give good help
*/
{
register char **dp;
for (dp = hp; *dp; dp++)
printf("%s\n", *dp);
}