Mercurial > hg > octave-nkf
comparison src/builtins.h @ 181:91ec95436dca
[project @ 1993-10-23 22:45:17 by jwe]
author | jwe |
---|---|
date | Sat, 23 Oct 1993 22:45:51 +0000 |
parents | e2c950dd96d2 |
children | a99f28f5e351 |
comparison
equal
deleted
inserted
replaced
180:de63a156b36e | 181:91ec95436dca |
---|---|
26 | 26 |
27 #ifdef __GNUG__ | 27 #ifdef __GNUG__ |
28 #pragma interface | 28 #pragma interface |
29 #endif | 29 #endif |
30 | 30 |
31 class ostrstream; | |
31 class Complex; | 32 class Complex; |
32 struct help_list; | 33 struct help_list; |
33 | 34 |
34 #ifndef MAPPER_FCN_TYPEDEFS | 35 #ifndef MAPPER_FCN_TYPEDEFS |
35 #define MAPPER_FCN_TYPEDEFS 1 | 36 #define MAPPER_FCN_TYPEDEFS 1 |
81 extern help_list *builtin_mapper_functions_help (void); | 82 extern help_list *builtin_mapper_functions_help (void); |
82 extern help_list *builtin_general_functions_help (void); | 83 extern help_list *builtin_general_functions_help (void); |
83 extern help_list *builtin_text_functions_help (void); | 84 extern help_list *builtin_text_functions_help (void); |
84 extern help_list *builtin_variables_help (void); | 85 extern help_list *builtin_variables_help (void); |
85 | 86 |
87 extern int help_from_list (ostrstream& output_buf, | |
88 const help_list *list, const char *string, | |
89 int usage); | |
90 | |
91 extern void additional_help_message (ostrstream& output_buf); | |
92 | |
93 extern void print_usage (const char *s); | |
94 | |
86 #endif | 95 #endif |
87 | 96 |
88 /* | 97 /* |
89 ;;; Local Variables: *** | 98 ;;; Local Variables: *** |
90 ;;; mode: C++ *** | 99 ;;; mode: C++ *** |