version 1.10, 2015/08/08 14:19:41 |
version 1.11, 2015/08/14 13:51:54 |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/help.c,v 1.9 2015/08/06 10:01:52 fujimoto Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/help.c,v 1.10 2015/08/08 14:19:41 fujimoto Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
|
|
if ( !s ) |
if ( !s ) |
ghelp(); |
ghelp(); |
else { |
else { |
#if !defined(VISUAL) && !defined(__MINGW32__) && !defined(__MINGW64__) |
#if !defined(VISUAL) && !defined(__MINGW32__) |
int i; |
int i; |
FUNC f; |
FUNC f; |
char name[BUFSIZ],com[BUFSIZ]; |
char name[BUFSIZ],com[BUFSIZ]; |
|
|
fprintf(stderr,"%s\n",f->f.usrf->desc); |
fprintf(stderr,"%s\n",f->f.usrf->desc); |
|
|
#endif |
#endif |
#if defined(__MINGW32__) || defined(__MINGW64__) |
|
fflush(stderr); |
|
#endif |
|
} |
} |
} |
} |
|
|
|
|
|
|
for ( i = 0; ghelpstr[i]; i++ ) |
for ( i = 0; ghelpstr[i]; i++ ) |
fprintf(stderr,"%s\n",ghelpstr[i]); |
fprintf(stderr,"%s\n",ghelpstr[i]); |
#if defined(__MINGW32__) || defined(__MINGW64__) |
|
fflush(stderr); |
|
#endif |
|
} |
} |