[BACK]Return to list.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/list.c between version 1.11 and 1.12

version 1.11, 2006/03/16 10:08:20 version 1.12, 2018/03/29 01:32:50
Line 45 
Line 45 
  * 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/list.c,v 1.10 2004/08/25 05:43:35 ohara Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/list.c,v 1.11 2006/03/16 10:08:20 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 55  void Plist(), Passoc(), Pcadr(), Pcddr();
Line 55  void Plist(), Passoc(), Pcadr(), Pcddr();
 void Pnconc(), Preplcd(), Preplca();  void Pnconc(), Preplcd(), Preplca();
   
 struct ftab list_tab[] = {  struct ftab list_tab[] = {
         {"car",Pcar,1},    {"car",Pcar,1},
         {"cdr",Pcdr,1},    {"cdr",Pcdr,1},
         {"cons",Pcons,2},    {"cons",Pcons,2},
         {"append",Pappend,2},    {"append",Pappend,2},
         {"reverse",Preverse,1},    {"reverse",Preverse,1},
         {"length",Plength,1},    {"length",Plength,1},
         {"nconc",Pnconc,2},    {"nconc",Pnconc,2},
         {"replcd",Preplcd,2},    {"replcd",Preplcd,2},
         {"replca",Preplca,2},    {"replca",Preplca,2},
         {"list", Plist, -99999999},    {"list", Plist, -99999999},
         {"assoc",Passoc,2},    {"assoc",Passoc,2},
         {"cddr",Pcddr,1},    {"cddr",Pcddr,1},
         {"cadr",Pcadr,1},    {"cadr",Pcadr,1},
         {0,0,0},    {0,0,0},
 };  };
   
 void Pcar(arg,rp)  void Pcar(arg,rp)
 NODE arg;  NODE arg;
 pointer *rp;  pointer *rp;
 {  {
         asir_assert(ARG0(arg),O_LIST,"car");    asir_assert(ARG0(arg),O_LIST,"car");
         if ( !BDY((LIST)ARG0(arg)) )    if ( !BDY((LIST)ARG0(arg)) )
                 *rp = ARG0(arg);      *rp = ARG0(arg);
         else    else
                 *rp = (pointer)BDY(BDY((LIST)ARG0(arg)));      *rp = (pointer)BDY(BDY((LIST)ARG0(arg)));
 }  }
   
 void Pcdr(arg,rp)  void Pcdr(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         asir_assert(ARG0(arg),O_LIST,"cdr");    asir_assert(ARG0(arg),O_LIST,"cdr");
         if ( !BDY((LIST)ARG0(arg)) )    if ( !BDY((LIST)ARG0(arg)) )
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         else    else
                 MKLIST(*rp,NEXT(BDY((LIST)ARG0(arg))));      MKLIST(*rp,NEXT(BDY((LIST)ARG0(arg))));
 }  }
   
 void Pcddr(arg,rp)  void Pcddr(arg,rp)
Line 134  void Pcons(arg,rp)
Line 134  void Pcons(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE t;    NODE t;
   
         asir_assert(ARG1(arg),O_LIST,"cons");    asir_assert(ARG1(arg),O_LIST,"cons");
         MKNODE(t,ARG0(arg),BDY((LIST)ARG1(arg))); MKLIST(*rp,t);    MKNODE(t,ARG0(arg),BDY((LIST)ARG1(arg))); MKLIST(*rp,t);
 }  }
   
 void Pappend(arg,rp)  void Pappend(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE t,t0,n;    NODE t,t0,n;
   
         asir_assert(ARG0(arg),O_LIST,"append");    asir_assert(ARG0(arg),O_LIST,"append");
         asir_assert(ARG1(arg),O_LIST,"append");    asir_assert(ARG1(arg),O_LIST,"append");
         if ( !(n = BDY((LIST)ARG0(arg))) )    if ( !(n = BDY((LIST)ARG0(arg))) )
                 *rp = (LIST)ARG1(arg);      *rp = (LIST)ARG1(arg);
         else {    else {
                 for ( t0 = 0; n; n = NEXT(n) ) {      for ( t0 = 0; n; n = NEXT(n) ) {
                         NEXTNODE(t0,t); BDY(t) = BDY(n);        NEXTNODE(t0,t); BDY(t) = BDY(n);
                 }      }
                 NEXT(t) = BDY((LIST)ARG1(arg));      NEXT(t) = BDY((LIST)ARG1(arg));
                 MKLIST(*rp,t0);      MKLIST(*rp,t0);
         }    }
 }  }
   
 void Preverse(arg,rp)  void Preverse(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE t,t1,n;    NODE t,t1,n;
   
         asir_assert(ARG0(arg),O_LIST,"reverse");    asir_assert(ARG0(arg),O_LIST,"reverse");
         if ( !(n = BDY((LIST)ARG0(arg))) )    if ( !(n = BDY((LIST)ARG0(arg))) )
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         else {    else {
                 for ( t = 0; n; n = NEXT(n) ) {      for ( t = 0; n; n = NEXT(n) ) {
                         MKNODE(t1,BDY(n),t); t = t1;        MKNODE(t1,BDY(n),t); t = t1;
                 }      }
                 MKLIST(*rp,t);      MKLIST(*rp,t);
         }    }
 }  }
   
 void Plength(arg,rp)  void Plength(arg,rp)
Line 191  Q *rp;
Line 191  Q *rp;
         n = BDY((LIST)ARG0(arg));          n = BDY((LIST)ARG0(arg));
         for ( i = 0; n; i++, n = NEXT(n) );          for ( i = 0; n; i++, n = NEXT(n) );
         break;          break;
         case O_BYTEARRAY:    case O_BYTEARRAY:
                 i = ((BYTEARRAY)ARG0(arg))->len;      i = ((BYTEARRAY)ARG0(arg))->len;
                 break;      break;
     default:      default:
         error("length : invalid argument"); break;          error("length : invalid argument"); break;
     }      }
Line 209  void Pnconc(arg,rp)
Line 209  void Pnconc(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE a1,a2,n;    NODE a1,a2,n;
   
         asir_assert(ARG0(arg),O_LIST,"nconc");    asir_assert(ARG0(arg),O_LIST,"nconc");
         asir_assert(ARG1(arg),O_LIST,"nconc");    asir_assert(ARG1(arg),O_LIST,"nconc");
         a1 = BDY((LIST)ARG0(arg));    a1 = BDY((LIST)ARG0(arg));
         if ( !a1 )    if ( !a1 )
                 *rp = (LIST)ARG1(arg);      *rp = (LIST)ARG1(arg);
         else {    else {
                 for ( n = a1; n; n = NEXT(n) ) {      for ( n = a1; n; n = NEXT(n) ) {
                         a2 = n;        a2 = n;
                 }      }
                 NEXT(a2) = BDY((LIST)ARG1(arg));      NEXT(a2) = BDY((LIST)ARG1(arg));
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         }    }
 }  }
   
 void Preplcd(arg,rp)  void Preplcd(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE a0,a1;    NODE a0,a1;
   
         asir_assert(ARG0(arg),O_LIST,"replcd");    asir_assert(ARG0(arg),O_LIST,"replcd");
         asir_assert(ARG1(arg),O_LIST,"replcd");    asir_assert(ARG1(arg),O_LIST,"replcd");
         a0 = BDY((LIST)ARG0(arg));    a0 = BDY((LIST)ARG0(arg));
         if ( !a0 )    if ( !a0 )
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         else {    else {
                 NEXT(a0) = BDY((LIST)ARG1(arg));      NEXT(a0) = BDY((LIST)ARG1(arg));
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         }    }
 }  }
   
 void Preplca(arg,rp)  void Preplca(arg,rp)
 NODE arg;  NODE arg;
 LIST *rp;  LIST *rp;
 {  {
         NODE n;    NODE n;
   
         asir_assert(ARG0(arg),O_LIST,"replca");    asir_assert(ARG0(arg),O_LIST,"replca");
         if ( !(n = BDY((LIST)ARG0(arg)) ) )    if ( !(n = BDY((LIST)ARG0(arg)) ) )
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         else {    else {
                 BDY(BDY((LIST)ARG0(arg))) = (LIST)ARG1(arg);      BDY(BDY((LIST)ARG0(arg))) = (LIST)ARG1(arg);
                 *rp = (LIST)ARG0(arg);      *rp = (LIST)ARG0(arg);
         }    }
 }  }
   
 void Passoc(NODE arg, LIST *rp)  void Passoc(NODE arg, LIST *rp)

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>