| version 1.26, 2003/10/21 04:28:48 |
version 1.30, 2004/03/05 01:19:09 |
|
|
| * 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/ctrl.c,v 1.25 2003/10/20 09:20:14 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/ctrl.c,v 1.29 2004/03/02 07:44:02 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
|
|
| |
|
| struct ftab ctrl_tab[] = { |
struct ftab ctrl_tab[] = { |
| {"ctrl",Pctrl,-2}, |
{"ctrl",Pctrl,-2}, |
| |
{"asir_env",Pctrl,-2}, |
| {0,0,0}, |
{0,0,0}, |
| }; |
}; |
| |
|
| Line 67 extern int StrassenSize; |
|
| Line 68 extern int StrassenSize; |
|
| extern int outputstyle; |
extern int outputstyle; |
| extern int fortran_output; |
extern int fortran_output; |
| extern int real_digit; |
extern int real_digit; |
| |
extern int real_binary; |
| #if defined(INTERVAL) |
#if defined(INTERVAL) |
| extern int zerorewrite; |
extern int zerorewrite; |
| #endif |
#endif |
| Line 75 extern int use_new_hensel; |
|
| Line 77 extern int use_new_hensel; |
|
| extern int print_quote; |
extern int print_quote; |
| extern int show_crossref; |
extern int show_crossref; |
| extern Obj user_defined_prompt; |
extern Obj user_defined_prompt; |
| |
extern int asir_setenv; |
| |
|
| static struct { |
static struct { |
| char *key; |
char *key; |
|
|
| {"message",&do_message}, |
{"message",&do_message}, |
| {"debug_up",&debug_up}, |
{"debug_up",&debug_up}, |
| {"no_prompt",&do_quiet}, |
{"no_prompt",&do_quiet}, |
| |
{"asir_setenv",&asir_setenv}, |
| {"ox_batch",&ox_batch}, |
{"ox_batch",&ox_batch}, |
| {"ox_check",&ox_check}, |
{"ox_check",&ox_check}, |
| {"ox_exchange_mathcap",&ox_exchange_mathcap}, |
{"ox_exchange_mathcap",&ox_exchange_mathcap}, |
|
|
| {"outputstyle",&outputstyle}, |
{"outputstyle",&outputstyle}, |
| {"double_output",&double_output}, |
{"double_output",&double_output}, |
| {"real_digit",&real_digit}, |
{"real_digit",&real_digit}, |
| |
{"real_binary",&real_binary}, |
| {"fortran_output",&fortran_output}, |
{"fortran_output",&fortran_output}, |
| {"new_hensel",&use_new_hensel}, |
{"new_hensel",&use_new_hensel}, |
| {"print_quote",&print_quote}, |
{"print_quote",&print_quote}, |