File:  [CSRG BSD Unix] / 43BSD / contrib / icon / rt / cvreal.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 16:12:55 2018 UTC (8 years, 1 month ago) by root
Branches: MAIN, BSD
CVS tags: HEAD, BSD43
BSD 4.3

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

/*
 * cvreal - convert to real and put the result into *r.
 */

cvreal(d, r)
register struct descrip *d;
double *r;
   {
   union numeric result;

   /*
    * Use cvnum to classify the value.  Cast integers into reals and
    *  fail if the value is non-numeric.
    */
   switch (cvnum(d, &result)) {
      case T_LONGINT:
         *r = result.integer;
         return (T_REAL);

      case T_REAL:
         *r = result.real;
         return (T_REAL);

      default:
         return (NULL);
      }
   }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.