Changeset b45d97 in git for Singular/longrat0.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/longrat0.cc

    r458bd6 rb45d97  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: longrat0.cc,v 1.6 1998-05-27 17:14:08 Singular Exp $ */
     4/* $Id: longrat0.cc,v 1.7 1999-04-17 12:30:21 Singular Exp $ */
    55/*
    66* ABSTRACT -
     
    117117  else if (a==NULL)
    118118  {
    119     StringAppend("o");
     119    StringAppendS("o");
    120120  }
    121121#endif
     
    133133    s=(char*)Alloc(l);
    134134    z=mpz_get_str(s,10,&a->z);
    135     StringAppend(z);
     135    StringAppendS(z);
    136136    if (a->s!=3)
    137137    {
    138       StringAppend("/");
     138      StringAppendS("/");
    139139      z=mpz_get_str(s,10,&a->n);
    140       StringAppend(z);
     140      StringAppendS(z);
    141141    }
    142142    Free((ADDRESS)s,l);
Note: See TracChangeset for help on using the changeset viewer.