Changeset b45d97 in git for Singular/clapsing.cc


Ignore:
Timestamp:
Apr 17, 1999, 2:30:24 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
a79a12873c307b35db5462af26c49d5b594af644
Parents:
458bd67f21def86763df6137584fe9c0d9fa9a66
Message:
more StringAppendS


git-svn-id: file:///usr/local/Singular/svn/trunk@2989 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/clapsing.cc

    r458bd6 rb45d97  
    33*  Computer Algebra System SINGULAR     *
    44****************************************/
    5 // $Id: clapsing.cc,v 1.48 1999-03-15 16:18:51 Singular Exp $
     5// $Id: clapsing.cc,v 1.49 1999-04-17 12:30:16 Singular Exp $
    66/*
    77* ABSTRACT: interface between Singular and factory
     
    133133  StringSetS( tag ); \
    134134  napWrite( f ); \
    135   PrintS(StringAppend("\n"));
     135  PrintS(StringAppendS("\n"));
    136136// CanonicalForm f, represents transcendent extension
    137137#define FACTORY_CFTROUT_POLY( tag, f ) \
     
    140140    StringSetS( tag ); \
    141141    napWrite( F ); \
    142     PrintS(StringAppend("\n")); \
     142    PrintS(StringAppendS("\n")); \
    143143    napDelete( &F ); \
    144144  }
     
    149149    StringSetS( tag ); \
    150150    napWrite( F ); \
    151     PrintS(StringAppend("\n")); \
     151    PrintS(StringAppendS("\n")); \
    152152    napDelete( &F ); \
    153153  }
     
    609609        //#ifdef LDEBUG
    610610        //number cn=(number)c;
    611         //StringSet(""); nWrite(nt); StringAppend(" ==> ");
    612         //nWrite(cn);PrintS(StringAppend("\n"));
     611        //StringSet(""); nWrite(nt); StringAppendS(" ==> ");
     612        //nWrite(cn);PrintS(StringAppendS("\n"));
    613613        //#endif
    614614      }
     
    928928    if (i<offs)
    929929    {
    930       StringAppend(currRing->parameter[i]);
     930      StringAppendS(currRing->parameter[i]);
    931931    }
    932932    else
    933933    {
    934       StringAppend(currRing->names[i-offs]);
     934      StringAppendS(currRing->names[i-offs]);
    935935    }
    936936    Li++;
    937937    cnt--;
    938938    if(cnt==0) break;
    939     StringAppend(",");
     939    StringAppendS(",");
    940940    if(! Li.hasItem()) break;
    941941  }
     
    946946      if (i<offs)
    947947      {
    948         StringAppend(currRing->parameter[i]);
     948        StringAppendS(currRing->parameter[i]);
    949949      }
    950950      else
    951951      {
    952         StringAppend(currRing->names[i-offs]);
     952        StringAppendS(currRing->names[i-offs]);
    953953      }
    954954      cnt--;
    955955      if(cnt==0) break;
    956       StringAppend(",");
    957     }
    958   }
    959   return mstrdup(StringAppend(""));
     956      StringAppendS(",");
     957    }
     958  }
     959  return mstrdup(StringAppendS(""));
    960960#else
    961961  return NULL;
Note: See TracChangeset for help on using the changeset viewer.