| version 1.15, 2003/11/08 01:12:02 |
version 1.17, 2004/05/14 09:20:56 |
|
|
| * 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/print.c,v 1.14 2001/10/09 01:36:07 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.16 2004/03/03 01:16:28 noro Exp $ |
| */ |
*/ |
| #include "ca.h" |
#include "ca.h" |
| #include "parse.h" |
#include "parse.h" |
| |
|
| void Pprint(); |
void Pprint(); |
| void Pquotetolist(); |
void Pquotetolist(); |
| |
void Pobjtoquote(); |
| void Peval_variables_in_quote(); |
void Peval_variables_in_quote(); |
| void Pset_print_function(); |
void Pset_print_function(); |
| |
|
| struct ftab print_tab[] = { |
struct ftab print_tab[] = { |
| {"print",Pprint,-2}, |
{"print",Pprint,-2}, |
| |
{"objtoquote",Pobjtoquote,1}, |
| {"quotetolist",Pquotetolist,1}, |
{"quotetolist",Pquotetolist,1}, |
| {"eval_variables_in_quote",Peval_variables_in_quote,1}, |
{"eval_variables_in_quote",Peval_variables_in_quote,1}, |
| {"set_print_function",Pset_print_function,-1}, |
{"set_print_function",Pset_print_function,-1}, |
| Line 66 struct ftab print_tab[] = { |
|
| Line 68 struct ftab print_tab[] = { |
|
| void Pprint(NODE arg,pointer *rp) |
void Pprint(NODE arg,pointer *rp) |
| { |
{ |
| Obj obj; |
Obj obj; |
| OPTLIST opt; |
Q opt; |
| |
|
| if ( arg ) { |
if ( arg ) { |
| obj = (Obj)ARG0(arg); |
obj = (Obj)ARG0(arg); |
| if ( NEXT(arg) ) { |
if ( NEXT(arg) ) { |
| opt = (OPTLIST)ARG1(arg); |
opt = (Q)ARG1(arg); |
| if ( INT(opt) ) { |
if ( INT(opt) ) { |
| printexpr(CO,obj); |
printexpr(CO,obj); |
| switch ( QTOS((Q)opt) ) { |
switch ( QTOS(opt) ) { |
| case 0: |
case 0: |
| break; |
break; |
| case 2: |
case 2: |
| Line 83 void Pprint(NODE arg,pointer *rp) |
|
| Line 85 void Pprint(NODE arg,pointer *rp) |
|
| case 1: default: |
case 1: default: |
| putc('\n',asir_out); break; |
putc('\n',asir_out); break; |
| } |
} |
| } else if ( OID(opt) == O_OPTLIST ) { |
|
| } else |
} else |
| error("print : invalid argument"); |
error("print : invalid argument"); |
| } else { |
} else { |
| Line 92 void Pprint(NODE arg,pointer *rp) |
|
| Line 93 void Pprint(NODE arg,pointer *rp) |
|
| } |
} |
| } |
} |
| *rp = 0; |
*rp = 0; |
| |
} |
| |
|
| |
void Pobjtoquote(NODE arg,QUOTE *rp) |
| |
{ |
| |
objtoquote(ARG0(arg),rp); |
| } |
} |
| |
|
| void Pquotetolist(NODE arg,LIST *rp) |
void Pquotetolist(NODE arg,LIST *rp) |