-
Notifications
You must be signed in to change notification settings - Fork 2
/
cmath.c
80 lines (66 loc) · 2.25 KB
/
cmath.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* The Regina Rexx Interpreter
* Copyright (C) 1992-1994 Anders Christensen <anders@pvv.unit.no>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* More attention should be paid to overflow and underflow conditions.
* This *is* done in some of the routines for the GCC compiler, but should
* be done in an ANSI-compatible manner.
*/
#include "rexx.h"
#include <math.h>
#include <stdio.h>
#include <string.h>
#ifdef SunKludges
double strtod( const char *, char ** ) ;
#endif
double myatof( const tsd_t *TSD, const streng *string )
{
char *str,*ptr ;
double answer ;
str = str_ofTSD(string) ;
answer = strtod(str,&ptr) ;
/* remove leading spaces */
for (;(*ptr)&&(rx_isspace(*ptr));ptr++) ;
#ifdef SUNOS_STRTOD_BUG
for (;*ptr=='0';ptr++) ;
#endif /* SUNOS_STRTOD_BUG */
if (*ptr)
exiterror( ERR_BAD_ARITHMETIC, 0 ) ;
FreeTSD( str ) ;
return answer ;
}
/*
* Takes 'string' as parameter, analyze whether it is an integer, and
* return a boolean variable which is true iff 'string' is a legal
* integer. The format of a legal integer is (the regexpr):
* [ ]*([-+][ ]*)?[0-9]+[ ]*
*/
int myisinteger( const streng *string )
{
const char *cptr=NULL, *eptr=NULL ;
cptr = string->value ;
eptr = cptr + string->len ;
for (;cptr<eptr && rx_isspace(*cptr); cptr++) ;
if (cptr<eptr && (*cptr=='-' || *cptr=='+'))
for (cptr++; cptr<eptr && rx_isspace(*cptr); cptr++) ;
if (cptr>=eptr)
return 0 ;
for (;cptr<eptr && rx_isdigit(*cptr); cptr++) ;
for (;cptr<eptr && rx_isspace(*cptr); cptr++) ;
return (cptr==eptr) ;
}