4.3BSD/usr/contrib/icon/operators/minus.c

Compare this file to the similar file:
Show the results in this format:

#include "../h/rt.h"

/*
 * x - y - subtract y from x.
 */

minus(nargs, arg2, arg1, arg0)
int nargs;
struct descrip arg2, arg1, arg0;
   {
   register int t1, t2;
   union numeric n1, n2;
   extern long cksub();

   SetBound;
   /*
    * x and y must be numeric.  Save the cvnum return values for later use.
    */
   if ((t1 = cvnum(&arg1, &n1)) == NULL)
      runerr(102, &arg1);
   if ((t2 = cvnum(&arg2, &n2)) == NULL)
      runerr(102, &arg2);

   if (t1 == T_LONGINT && t2 == T_LONGINT)
      /*
       * Both x and y are integers.  Perform integer subtraction using
       *  cksub (to check for overflow) and place the result in arg0 as
       *  the return value.
       */
      mkint(cksub(n1.integer, n2.integer), &arg0);
   else {
      /*
       * Either x or y is real, convert the other to a real, perform
       *  the subtraction and place the result in arg0 as the return value.
       */
      if (t1 == T_LONGINT)
         n1.real = n1.integer;
      if (t2 == T_LONGINT)
         n2.real = n2.integer;
      mkreal(n1.real - n2.real, &arg0);
      }
   ClearBound;
   }

Opblock(minus,2,"-")