Merge pull request #66 from davidgiven/dtrg-warnings
lang/basic/lib: fewer warnings
This commit is contained in:
commit
fb90b7b8d8
|
@ -5,11 +5,11 @@
|
||||||
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
||||||
*/
|
*/
|
||||||
|
|
||||||
long _abl(i) long i;
|
long _abl(long i)
|
||||||
{
|
{
|
||||||
return (i >= 0 ? i : -i);
|
return (i >= 0 ? i : -i);
|
||||||
}
|
}
|
||||||
double _abr(f) double f;
|
double _abr(double f)
|
||||||
{
|
{
|
||||||
return (f >= 0.0 ? f : -f);
|
return (f >= 0.0 ? f : -f);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
int _asc(str)
|
int _asc(String* str)
|
||||||
String *str;
|
|
||||||
{
|
{
|
||||||
if (str == 0 || str->strval == 0)
|
if (str == 0 || str->strval == 0)
|
||||||
error(3);
|
error(3);
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
/* $Id$ */
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
asrt(b)
|
void asrt(int b)
|
||||||
|
{
|
||||||
|
if (!b)
|
||||||
{
|
{
|
||||||
if(!b){
|
|
||||||
printf("ASSERTION ERROR\n");
|
printf("ASSERTION ERROR\n");
|
||||||
abort();
|
abort();
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,4 +10,3 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
double _atn(double x) { return atan(x); }
|
double _atn(double x) { return atan(x); }
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
String *_chr(i)
|
String* _chr(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
char buf[2];
|
char buf[2];
|
||||||
|
|
|
@ -1,17 +1,18 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
int _cint(f) double f;
|
int _cint(double f)
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
if( f<-32768 || f>32767) error(4);
|
if (f < -32768 || f > 32767)
|
||||||
|
error(4);
|
||||||
if (f < 0)
|
if (f < 0)
|
||||||
r = f - 0.5;
|
r = f - 0.5;
|
||||||
else r= f+0.5;
|
else
|
||||||
|
r = f + 0.5;
|
||||||
return (r);
|
return (r);
|
||||||
}
|
}
|
||||||
|
|
||||||
double _trunc(f)
|
double _trunc(double f)
|
||||||
double f;
|
|
||||||
{
|
{
|
||||||
long d;
|
long d;
|
||||||
d = f;
|
d = f;
|
||||||
|
@ -19,22 +20,25 @@ double f;
|
||||||
return (f);
|
return (f);
|
||||||
}
|
}
|
||||||
|
|
||||||
double _fcint(f) double f;
|
double _fcint(double f)
|
||||||
{
|
{
|
||||||
long r;
|
long r;
|
||||||
if(f<0){
|
if (f < 0)
|
||||||
|
{
|
||||||
r = -f;
|
r = -f;
|
||||||
r = -r - 1;
|
r = -r - 1;
|
||||||
}else r= f;
|
}
|
||||||
|
else
|
||||||
|
r = f;
|
||||||
f = r;
|
f = r;
|
||||||
return (f);
|
return (f);
|
||||||
}
|
}
|
||||||
int _fix(f)
|
int _fix(double f)
|
||||||
double f;
|
|
||||||
{
|
{
|
||||||
int r;
|
int r;
|
||||||
|
|
||||||
if( f<-32768.0 || f>32767.0) error(4);
|
if (f < -32768.0 || f > 32767.0)
|
||||||
|
error(4);
|
||||||
r = _sgn(f) * _fcint((f > 0.0 ? f : -f));
|
r = _sgn(f) * _fcint((f > 0.0 ? f : -f));
|
||||||
return (r);
|
return (r);
|
||||||
}
|
}
|
||||||
|
|
|
@ -52,13 +52,13 @@ char *errortable[255]={
|
||||||
0
|
0
|
||||||
};
|
};
|
||||||
|
|
||||||
error(index)
|
void error(int index)
|
||||||
int index;
|
|
||||||
{
|
{
|
||||||
_setline();
|
_setline();
|
||||||
if (index < 0 || index > 40)
|
if (index < 0 || index > 40)
|
||||||
printf("LINE %d:ERROR %d: Unprintable error\n", _erlsym, index);
|
printf("LINE %d:ERROR %d: Unprintable error\n", _erlsym, index);
|
||||||
else printf("LINE %d:ERROR %d: %s\n",_erlsym,index,errortable[index]);
|
else
|
||||||
|
printf("LINE %d:ERROR %d: %s\n", _erlsym, index, errortable[index]);
|
||||||
_errsym = index;
|
_errsym = index;
|
||||||
_trap();
|
_trap();
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,14 +12,11 @@ Filedesc _fdtable[16];
|
||||||
1-15 user files
|
1-15 user files
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
int _chann = -1;
|
int _chann = -1;
|
||||||
FILE* _chanrd = stdin;
|
FILE* _chanrd = stdin;
|
||||||
FILE* _chanwr = stdout;
|
FILE* _chanwr = stdout;
|
||||||
|
|
||||||
_setchan(index)
|
void _setchan(int index)
|
||||||
int index;
|
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf("setchannel %d\n", index);
|
printf("setchannel %d\n", index);
|
||||||
|
@ -38,12 +35,13 @@ int index;
|
||||||
_chanrd = _chanwr = _fdtable[index].fd;
|
_chanrd = _chanwr = _fdtable[index].fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
_asschn()
|
void _asschn(void)
|
||||||
{
|
{
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf("_asschn %d\n", _chann);
|
printf("_asschn %d\n", _chann);
|
||||||
#endif
|
#endif
|
||||||
if( _chann == -1) return;
|
if (_chann == -1)
|
||||||
|
return;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf(" file %d\n", _fdtable[_chann].fd);
|
printf(" file %d\n", _fdtable[_chann].fd);
|
||||||
#endif
|
#endif
|
||||||
|
@ -55,17 +53,16 @@ _asschn()
|
||||||
error(2);
|
error(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
_clochn(nr)
|
void _clochn(int nr)
|
||||||
int nr;
|
|
||||||
{
|
{
|
||||||
if( nr<1 || nr >15 || _fdtable[nr].fd==0) error(3);
|
if (nr < 1 || nr > 15 || _fdtable[nr].fd == 0)
|
||||||
|
error(3);
|
||||||
fclose(_fdtable[nr].fd);
|
fclose(_fdtable[nr].fd);
|
||||||
_fdtable[nr].fd=0; _fdtable[nr].fname=0;
|
_fdtable[nr].fd = 0;
|
||||||
|
_fdtable[nr].fname = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
_opnchn(reclen,fname,mode)
|
void _opnchn(int reclen, String* fname, String* mode)
|
||||||
String *mode,*fname;
|
|
||||||
int reclen;
|
|
||||||
{
|
{
|
||||||
/* channel has been set */
|
/* channel has been set */
|
||||||
FILE* f;
|
FILE* f;
|
||||||
|
@ -110,22 +107,23 @@ int reclen;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
_ioeof(channel)
|
int _ioeof(int channel)
|
||||||
int channel;
|
|
||||||
{
|
{
|
||||||
FILE* fd;
|
FILE* fd;
|
||||||
char c;
|
char c;
|
||||||
if( channel<0 || channel >15) error(3);
|
if (channel < 0 || channel > 15)
|
||||||
|
error(3);
|
||||||
fd = _fdtable[channel].fd;
|
fd = _fdtable[channel].fd;
|
||||||
if (fd == 0)
|
if (fd == 0)
|
||||||
error(3);
|
error(3);
|
||||||
c = fgetc(fd);
|
c = fgetc(fd);
|
||||||
if( feof(_fdtable[channel].fd) ) return(-1);
|
if (feof(_fdtable[channel].fd))
|
||||||
|
return (-1);
|
||||||
ungetc(c, fd);
|
ungetc(c, fd);
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
_close()
|
void _close(void)
|
||||||
{
|
{
|
||||||
/* close all open files */
|
/* close all open files */
|
||||||
int i;
|
int i;
|
||||||
|
|
|
@ -1,12 +1,11 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
_hlt(nr)
|
void _hlt(int nr)
|
||||||
int nr;
|
|
||||||
{
|
{
|
||||||
exit(nr);
|
exit(nr);
|
||||||
}
|
}
|
||||||
|
|
||||||
_goto_err()
|
void _goto_err(void)
|
||||||
{
|
{
|
||||||
error(3);
|
error(3);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,24 +10,31 @@
|
||||||
|
|
||||||
int _width = 75, _pos = 0, _zonewidth = 15;
|
int _width = 75, _pos = 0, _zonewidth = 15;
|
||||||
|
|
||||||
_out(str)
|
void _out(char* str)
|
||||||
char *str;
|
|
||||||
{
|
{
|
||||||
int pos;
|
int pos;
|
||||||
|
|
||||||
if( _chann== -1) pos= _pos;
|
if (_chann == -1)
|
||||||
else pos= _fdtable[_chann].pos;
|
pos = _pos;
|
||||||
|
else
|
||||||
|
pos = _fdtable[_chann].pos;
|
||||||
while (*str)
|
while (*str)
|
||||||
{
|
{
|
||||||
if( pos>= _width){ _outnl(); pos=0;}
|
if (pos >= _width)
|
||||||
|
{
|
||||||
|
_outnl();
|
||||||
|
pos = 0;
|
||||||
|
}
|
||||||
fputc(*str++, _chanwr);
|
fputc(*str++, _chanwr);
|
||||||
pos++;
|
pos++;
|
||||||
}
|
}
|
||||||
if( _chann== -1) _pos=pos;
|
if (_chann == -1)
|
||||||
else _fdtable[_chann].pos= pos;
|
_pos = pos;
|
||||||
|
else
|
||||||
|
_fdtable[_chann].pos = pos;
|
||||||
}
|
}
|
||||||
|
|
||||||
_outnl()
|
void _outnl(void)
|
||||||
{
|
{
|
||||||
fputc('\n', _chanwr);
|
fputc('\n', _chanwr);
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
|
@ -35,14 +42,16 @@ _outnl()
|
||||||
else
|
else
|
||||||
_fdtable[_chann].pos = 0;
|
_fdtable[_chann].pos = 0;
|
||||||
}
|
}
|
||||||
_zone()
|
void _zone(void)
|
||||||
{
|
{
|
||||||
/* go to next zone */
|
/* go to next zone */
|
||||||
int pos;
|
int pos;
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
pos = _pos;
|
pos = _pos;
|
||||||
else pos= _fdtable[_chann].pos;
|
else
|
||||||
do{
|
pos = _fdtable[_chann].pos;
|
||||||
|
do
|
||||||
|
{
|
||||||
fputc(' ', _chanwr);
|
fputc(' ', _chanwr);
|
||||||
pos++;
|
pos++;
|
||||||
if (pos == _width)
|
if (pos == _width)
|
||||||
|
@ -52,11 +61,12 @@ _zone()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
} while (pos % _zonewidth != 0);
|
} while (pos % _zonewidth != 0);
|
||||||
if( _chann== -1) _pos=pos;
|
if (_chann == -1)
|
||||||
else _fdtable[_chann].pos= pos;
|
_pos = pos;
|
||||||
|
else
|
||||||
|
_fdtable[_chann].pos = pos;
|
||||||
}
|
}
|
||||||
_in(buf)
|
void _in(char* buf)
|
||||||
char *buf;
|
|
||||||
{
|
{
|
||||||
register int holder;
|
register int holder;
|
||||||
char* c;
|
char* c;
|
||||||
|
@ -64,28 +74,36 @@ char *buf;
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
{
|
{
|
||||||
pos = _pos;
|
pos = _pos;
|
||||||
}else pos= _fdtable[_chann].pos;
|
}
|
||||||
|
else
|
||||||
|
pos = _fdtable[_chann].pos;
|
||||||
c = buf;
|
c = buf;
|
||||||
while( (holder = fgetc(_chanrd)) != EOF && holder != '\n'){
|
while ((holder = fgetc(_chanrd)) != EOF && holder != '\n')
|
||||||
|
{
|
||||||
*c = holder;
|
*c = holder;
|
||||||
if( _chann == -1) putchar(holder);
|
if (_chann == -1)
|
||||||
c++; pos++;
|
putchar(holder);
|
||||||
|
c++;
|
||||||
|
pos++;
|
||||||
}
|
}
|
||||||
*c = 0;
|
*c = 0;
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
{
|
{
|
||||||
_pos = pos;
|
_pos = pos;
|
||||||
} else _fdtable[_chann].pos= pos;
|
|
||||||
}
|
}
|
||||||
_tab(x)
|
else
|
||||||
int x;
|
_fdtable[_chann].pos = pos;
|
||||||
|
}
|
||||||
|
void _tab(int x)
|
||||||
{
|
{
|
||||||
if( x> _width) error(3);
|
if (x > _width)
|
||||||
if( x< _pos) _outnl();
|
error(3);
|
||||||
|
if (x < _pos)
|
||||||
|
_outnl();
|
||||||
_spc(x - _pos);
|
_spc(x - _pos);
|
||||||
}
|
}
|
||||||
_spc(x)
|
void _spc(int x)
|
||||||
int x;
|
|
||||||
{
|
{
|
||||||
while(x-->0) _out(" ");
|
while (x-- > 0)
|
||||||
|
_out(" ");
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
String *_mki(i)
|
String* _mki(long i)
|
||||||
long i;
|
|
||||||
{
|
{
|
||||||
char* buffer = " ";
|
char* buffer = " ";
|
||||||
String* s;
|
String* s;
|
||||||
|
@ -12,8 +11,7 @@ long i;
|
||||||
*((long*)s->strval) = i;
|
*((long*)s->strval) = i;
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
String *_mkd(d)
|
String* _mkd(double d)
|
||||||
double d;
|
|
||||||
{
|
{
|
||||||
char* buffer = " ";
|
char* buffer = " ";
|
||||||
String* s;
|
String* s;
|
||||||
|
@ -22,13 +20,11 @@ double d;
|
||||||
*((double*)s->strval) = d;
|
*((double*)s->strval) = d;
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
long _cvi(s)
|
long _cvi(String* s)
|
||||||
String *s;
|
|
||||||
{
|
{
|
||||||
return *((long*)s->strval);
|
return *((long*)s->strval);
|
||||||
}
|
}
|
||||||
double _cvd(s)
|
double _cvd(String* s)
|
||||||
String *s;
|
|
||||||
{
|
{
|
||||||
return *((double*)s->strval);
|
return *((double*)s->strval);
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,16 +4,14 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
String *_oct(i)
|
String* _oct(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
char buffer[30];
|
char buffer[30];
|
||||||
sprintf(buffer, "%o", i);
|
sprintf(buffer, "%o", i);
|
||||||
return ((String*)_newstr(buffer));
|
return ((String*)_newstr(buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_hex(i)
|
String* _hex(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
char buffer[30];
|
char buffer[30];
|
||||||
|
|
||||||
|
@ -21,8 +19,7 @@ int i;
|
||||||
return ((String*)_newstr(buffer));
|
return ((String*)_newstr(buffer));
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_nstr(f)
|
String* _nstr(double f)
|
||||||
double f;
|
|
||||||
{
|
{
|
||||||
char buffer[80];
|
char buffer[80];
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
int peek(addr)
|
int peek(int addr)
|
||||||
int addr;
|
|
||||||
{
|
{
|
||||||
/* this can not work properly for machines in which the
|
/* this can not work properly for machines in which the
|
||||||
POINTERSIZE differs from the integer size
|
POINTERSIZE differs from the integer size
|
||||||
|
@ -17,8 +16,7 @@ int addr;
|
||||||
return (i);
|
return (i);
|
||||||
}
|
}
|
||||||
|
|
||||||
_poke(i,j)
|
void _poke(int i, int j)
|
||||||
int i,j;
|
|
||||||
{
|
{
|
||||||
char* p;
|
char* p;
|
||||||
p = (char*)i;
|
p = (char*)i;
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
double _power(double x, double y) { return pow(x, y); }
|
double _power(double x, double y) { return pow(x, y); }
|
||||||
|
|
||||||
|
|
|
@ -7,60 +7,68 @@
|
||||||
|
|
||||||
/* Here all routine to generate terminal oriented output is located */
|
/* Here all routine to generate terminal oriented output is located */
|
||||||
|
|
||||||
_qstmark()
|
void _qstmark(void)
|
||||||
{
|
{
|
||||||
/* prompt for terminal input */
|
/* prompt for terminal input */
|
||||||
putchar('?');
|
putchar('?');
|
||||||
}
|
}
|
||||||
|
|
||||||
_nl()
|
void _nl(void)
|
||||||
{
|
{
|
||||||
_asschn();
|
_asschn();
|
||||||
_outnl();
|
_outnl();
|
||||||
}
|
}
|
||||||
_prinum(i)
|
void _prinum(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
char buffer[40];
|
char buffer[40];
|
||||||
|
|
||||||
_asschn();
|
_asschn();
|
||||||
if (i >= 0)
|
if (i >= 0)
|
||||||
sprintf(buffer, " %d ", i);
|
sprintf(buffer, " %d ", i);
|
||||||
else sprintf(buffer,"-%d ",-i);
|
else
|
||||||
|
sprintf(buffer, "-%d ", -i);
|
||||||
_out(buffer);
|
_out(buffer);
|
||||||
}
|
}
|
||||||
_str(f,buffer)
|
void _str(double f, char* buffer)
|
||||||
double f;
|
|
||||||
char *buffer;
|
|
||||||
{
|
{
|
||||||
register char* c = buffer;
|
register char* c = buffer;
|
||||||
int eformat = 0;
|
int eformat = 0;
|
||||||
if( f>=0){
|
if (f >= 0)
|
||||||
if( f> 1.0e8) {
|
{
|
||||||
|
if (f > 1.0e8)
|
||||||
|
{
|
||||||
eformat = 1;
|
eformat = 1;
|
||||||
sprintf(buffer, " %e", f);
|
sprintf(buffer, " %e", f);
|
||||||
}
|
}
|
||||||
else sprintf(buffer," %f",f);
|
else
|
||||||
|
sprintf(buffer, " %f", f);
|
||||||
c++;
|
c++;
|
||||||
}else {
|
}
|
||||||
if(-f> 1.0e8) {
|
else
|
||||||
|
{
|
||||||
|
if (-f > 1.0e8)
|
||||||
|
{
|
||||||
eformat = 1;
|
eformat = 1;
|
||||||
sprintf(buffer, "-%e", -f);
|
sprintf(buffer, "-%e", -f);
|
||||||
}
|
}
|
||||||
else sprintf(buffer,"-%f",-f);
|
else
|
||||||
|
sprintf(buffer, "-%f", -f);
|
||||||
}
|
}
|
||||||
if (! eformat) {
|
if (!eformat)
|
||||||
for( ; *c && *c!= ' ';c++) ;
|
{
|
||||||
|
for (; *c && *c != ' '; c++)
|
||||||
|
;
|
||||||
c--;
|
c--;
|
||||||
while (c > buffer && *c == '0')
|
while (c > buffer && *c == '0')
|
||||||
{
|
{
|
||||||
*c= 0;c--;
|
*c = 0;
|
||||||
|
c--;
|
||||||
}
|
}
|
||||||
if( *c=='.') *c=0;
|
if (*c == '.')
|
||||||
|
*c = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_prfnum(f)
|
void _prfnum(double f)
|
||||||
double f;
|
|
||||||
{
|
{
|
||||||
/* BASIC strings trailing zeroes */
|
/* BASIC strings trailing zeroes */
|
||||||
char buffer[100];
|
char buffer[100];
|
||||||
|
@ -72,10 +80,11 @@ double f;
|
||||||
strcat(buffer, " ");
|
strcat(buffer, " ");
|
||||||
_out(buffer);
|
_out(buffer);
|
||||||
}
|
}
|
||||||
_prstr(str)
|
void _prstr(String* str)
|
||||||
String *str;
|
|
||||||
{
|
{
|
||||||
_asschn();
|
_asschn();
|
||||||
if( str==0) _out("<null>");
|
if (str == 0)
|
||||||
else _out(str->strval);
|
_out("<null>");
|
||||||
|
else
|
||||||
|
_out(str->strval);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
#define EM_WSIZE _EM_WSIZE
|
#define EM_WSIZE _EM_WSIZE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
_randomi()
|
void _randomi(void)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
_setchan(-1);
|
_setchan(-1);
|
||||||
|
@ -14,14 +14,14 @@ _randomi()
|
||||||
_setrand(i);
|
_setrand(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
_setrand(i)
|
void _setrand(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
srand(i);
|
srand(i);
|
||||||
}
|
}
|
||||||
double _rnd(d) double d;
|
double _rnd(double d)
|
||||||
{
|
{
|
||||||
double f; f= (int) rand();
|
double f;
|
||||||
|
f = (int)rand();
|
||||||
return (f /
|
return (f /
|
||||||
#if EM_WSIZE == 4
|
#if EM_WSIZE == 4
|
||||||
2147483647.0
|
2147483647.0
|
||||||
|
|
|
@ -4,14 +4,14 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
_readln()
|
void _readln(void)
|
||||||
{
|
{
|
||||||
register int c;
|
register int c;
|
||||||
while ((c = fgetc(_chanrd)) != EOF && c != '\n')
|
while ((c = fgetc(_chanrd)) != EOF && c != '\n')
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
readskip()
|
void readskip(void)
|
||||||
{
|
{
|
||||||
register int c;
|
register int c;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
@ -20,8 +20,7 @@ readskip()
|
||||||
while ((c = fgetc(_chanrd)) != EOF && c != ',' && c != '\n')
|
while ((c = fgetc(_chanrd)) != EOF && c != ',' && c != '\n')
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
_readint(addr)
|
void _readint(int* addr)
|
||||||
int *addr;
|
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
|
@ -32,8 +31,10 @@ int *addr;
|
||||||
_asschn();
|
_asschn();
|
||||||
if (fscanf(_chanrd, "%d", &i) != 1)
|
if (fscanf(_chanrd, "%d", &i) != 1)
|
||||||
{
|
{
|
||||||
if( ferror(_chanrd)) error(29);
|
if (ferror(_chanrd))
|
||||||
if( feof(_chanrd)) error(2);
|
error(29);
|
||||||
|
if (feof(_chanrd))
|
||||||
|
error(2);
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
{
|
{
|
||||||
_asschn(); /* may be closed by now */
|
_asschn(); /* may be closed by now */
|
||||||
|
@ -43,10 +44,14 @@ int *addr;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
error(40);
|
error(40);
|
||||||
}else { readskip(); *addr=i;}
|
|
||||||
}
|
}
|
||||||
_readflt(addr)
|
else
|
||||||
double *addr;
|
{
|
||||||
|
readskip();
|
||||||
|
*addr = i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void _readflt(double* addr)
|
||||||
{
|
{
|
||||||
double f;
|
double f;
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
|
@ -57,8 +62,10 @@ double *addr;
|
||||||
_asschn();
|
_asschn();
|
||||||
if (fscanf(_chanrd, "%lf", &f) != 1)
|
if (fscanf(_chanrd, "%lf", &f) != 1)
|
||||||
{
|
{
|
||||||
if( ferror(_chanrd)) error(29);
|
if (ferror(_chanrd))
|
||||||
if( feof(_chanrd)) error(2);
|
error(29);
|
||||||
|
if (feof(_chanrd))
|
||||||
|
error(2);
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
{
|
{
|
||||||
fgets(buf, 1024, _chanrd);
|
fgets(buf, 1024, _chanrd);
|
||||||
|
@ -67,10 +74,14 @@ double *addr;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
error(40);
|
error(40);
|
||||||
}else { readskip(); *addr=f;}
|
|
||||||
}
|
}
|
||||||
_readstr(s)
|
else
|
||||||
String **s;
|
{
|
||||||
|
readskip();
|
||||||
|
*addr = f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
void _readstr(String** s)
|
||||||
{
|
{
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
register int kar;
|
register int kar;
|
||||||
|
@ -91,25 +102,29 @@ String **s;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf("qouted string\n");
|
printf("qouted string\n");
|
||||||
#endif
|
#endif
|
||||||
while ( (kar= fgetc(_chanrd)) != EOF && kar!='"' ) *c++ = kar ;
|
while ((kar = fgetc(_chanrd)) != EOF && kar != '"')
|
||||||
|
*c++ = kar;
|
||||||
ungetc(kar, _chanrd);
|
ungetc(kar, _chanrd);
|
||||||
*c = 0;
|
*c = 0;
|
||||||
}else
|
}
|
||||||
if( isalpha(*c))
|
else if (isalpha(*c))
|
||||||
{
|
{
|
||||||
/* read normal string */
|
/* read normal string */
|
||||||
c++;
|
c++;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf("non-qouted string\n");
|
printf("non-qouted string\n");
|
||||||
#endif
|
#endif
|
||||||
while( (kar= fgetc(_chanrd)) != ',' && kar!= EOF &&
|
while ((kar = fgetc(_chanrd)) != ',' && kar != EOF && !isspace(kar) && kar != '\n')
|
||||||
!isspace(kar) && kar!='\n')
|
|
||||||
*c++ = kar;
|
*c++ = kar;
|
||||||
ungetc(kar, _chanrd);
|
ungetc(kar, _chanrd);
|
||||||
*c = 0;
|
*c = 0;
|
||||||
}else{
|
}
|
||||||
if( ferror(_chanrd)) error(29);
|
else
|
||||||
if( feof(_chanrd)) error(2);
|
{
|
||||||
|
if (ferror(_chanrd))
|
||||||
|
error(29);
|
||||||
|
if (feof(_chanrd))
|
||||||
|
error(2);
|
||||||
if (_chann == -1)
|
if (_chann == -1)
|
||||||
{
|
{
|
||||||
fgets(buffer, 1024, _chanrd);
|
fgets(buffer, 1024, _chanrd);
|
||||||
|
@ -130,8 +145,7 @@ String **s;
|
||||||
|
|
||||||
extern int _seektab[];
|
extern int _seektab[];
|
||||||
|
|
||||||
_restore(line)
|
void _restore(int line)
|
||||||
int line;
|
|
||||||
{
|
{
|
||||||
int nr;
|
int nr;
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
|
@ -152,11 +166,11 @@ int line;
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf(" %d lines to skip\n", nr);
|
printf(" %d lines to skip\n", nr);
|
||||||
#endif
|
#endif
|
||||||
while(nr-- >0 ) fgets(buffer,1024,_chanrd);
|
while (nr-- > 0)
|
||||||
|
fgets(buffer, 1024, _chanrd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_rdline(s)
|
void _rdline(String** s)
|
||||||
String **s;
|
|
||||||
{
|
{
|
||||||
char buffer[1024];
|
char buffer[1024];
|
||||||
if (fgets(buffer, 1024, _chanrd) == 0)
|
if (fgets(buffer, 1024, _chanrd) == 0)
|
||||||
|
|
|
@ -5,18 +5,18 @@
|
||||||
int _gotable[MAXNESTING];
|
int _gotable[MAXNESTING];
|
||||||
int topstk = 0;
|
int topstk = 0;
|
||||||
|
|
||||||
_gosub(x)
|
void _gosub(int x)
|
||||||
int x;
|
|
||||||
{
|
{
|
||||||
/* administer gosub */
|
/* administer gosub */
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
printf("store %d in %d\n", x, topstk);
|
printf("store %d in %d\n", x, topstk);
|
||||||
#endif
|
#endif
|
||||||
if( topstk== MAXNESTING) error(26);
|
if (topstk == MAXNESTING)
|
||||||
|
error(26);
|
||||||
_gotable[topstk] = x;
|
_gotable[topstk] = x;
|
||||||
topstk++;
|
topstk++;
|
||||||
}
|
}
|
||||||
_retstmt()
|
int _retstmt(void)
|
||||||
{
|
{
|
||||||
/* make sure that a return label index is on top
|
/* make sure that a return label index is on top
|
||||||
of the stack */
|
of the stack */
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
char * salloc(length)
|
char* salloc(unsigned length)
|
||||||
unsigned length;
|
|
||||||
{
|
{
|
||||||
char* c, *s;
|
char* c, *s;
|
||||||
c = malloc(length);
|
c = malloc(length);
|
||||||
if( !c ) error(5);
|
if (!c)
|
||||||
for(s=c;s<c+length;s++) *s = 0;
|
error(5);
|
||||||
|
for (s = c; s < c + length; s++)
|
||||||
|
*s = 0;
|
||||||
return (c);
|
return (c);
|
||||||
}
|
}
|
||||||
|
|
||||||
sfree(c)
|
void sfree(char* c)
|
||||||
char *c;
|
|
||||||
{
|
{
|
||||||
if( !c ) return;
|
if (!c)
|
||||||
|
return;
|
||||||
free(c);
|
free(c);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
_sgn(v)
|
int _sgn(double v)
|
||||||
double v;
|
|
||||||
{
|
{
|
||||||
if( v>0) return(1);
|
if (v > 0)
|
||||||
if( v<0) return(-1);
|
return (1);
|
||||||
|
if (v < 0)
|
||||||
|
return (-1);
|
||||||
return (0);
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
_forsgn(v)
|
int _forsgn(double v)
|
||||||
double v;
|
|
||||||
{
|
{
|
||||||
if (v >= 0) return 1;
|
if (v >= 0)
|
||||||
|
return 1;
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,4 +13,3 @@
|
||||||
double _sin(double x) { return sin(x); }
|
double _sin(double x) { return sin(x); }
|
||||||
double _cos(double x) { return cos(x); }
|
double _cos(double x) { return cos(x); }
|
||||||
double _tan(double x) { return tan(x); }
|
double _tan(double x) { return tan(x); }
|
||||||
|
|
||||||
|
|
|
@ -11,4 +11,3 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
double _sqt(double x) { return sqrt(x); }
|
double _sqt(double x) { return sqrt(x); }
|
||||||
|
|
||||||
|
|
|
@ -4,19 +4,21 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
#define ok(X) if( X ==0) return;
|
#define ok(X) \
|
||||||
#define okr(X) if( X ==0) return(0);
|
if (X == 0) \
|
||||||
|
return;
|
||||||
|
#define okr(X) \
|
||||||
|
if (X == 0) \
|
||||||
|
return (0);
|
||||||
|
|
||||||
extern char* salloc();
|
extern char* salloc();
|
||||||
|
|
||||||
_length(str)
|
int _length(String* str)
|
||||||
String *str;
|
|
||||||
{
|
{
|
||||||
okr(str);
|
okr(str);
|
||||||
return (str->strlength);
|
return (str->strlength);
|
||||||
}
|
}
|
||||||
String *_newstr(str)
|
String* _newstr(char* str)
|
||||||
char *str;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
okr(str);
|
okr(str);
|
||||||
|
@ -27,24 +29,23 @@ char *str;
|
||||||
strcpy(s->strval, str);
|
strcpy(s->strval, str);
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
_incstr(src)
|
void _incstr(String* src)
|
||||||
String *src;
|
|
||||||
{
|
{
|
||||||
/* one more variable uses the string */
|
/* one more variable uses the string */
|
||||||
ok(src);
|
ok(src);
|
||||||
src->strcount++;
|
src->strcount++;
|
||||||
}
|
}
|
||||||
_decstr(str)
|
void _decstr(String* str)
|
||||||
String *str;
|
|
||||||
{
|
{
|
||||||
ok(str);
|
ok(str);
|
||||||
/* Strings in ROM are initialized with this count */
|
/* Strings in ROM are initialized with this count */
|
||||||
if ( str->strcount==9999 ) return ;
|
if (str->strcount == 9999)
|
||||||
|
return;
|
||||||
str->strcount--;
|
str->strcount--;
|
||||||
if(str->strcount<=0) _delstr(str);
|
if (str->strcount <= 0)
|
||||||
|
_delstr(str);
|
||||||
}
|
}
|
||||||
_strcpy(dst,src)
|
void _strcpy(String* dst, String* src)
|
||||||
String *src,*dst;
|
|
||||||
{
|
{
|
||||||
ok(src);
|
ok(src);
|
||||||
ok(dst);
|
ok(dst);
|
||||||
|
@ -52,19 +53,18 @@ String *src,*dst;
|
||||||
*dst = *src;
|
*dst = *src;
|
||||||
_incstr(src);
|
_incstr(src);
|
||||||
}
|
}
|
||||||
_delstr(src)
|
void _delstr(String* src)
|
||||||
String *src;
|
|
||||||
{
|
{
|
||||||
ok(src);
|
ok(src);
|
||||||
sfree(src->strval);
|
sfree(src->strval);
|
||||||
sfree((char*)src);
|
sfree((char*)src);
|
||||||
}
|
}
|
||||||
String *_concat(s1,s2)
|
String* _concat(String* s1, String* s2)
|
||||||
String *s1,*s2;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
int length;
|
int length;
|
||||||
okr(s1); okr(s2);
|
okr(s1);
|
||||||
|
okr(s2);
|
||||||
s = (String*)salloc(sizeof(String));
|
s = (String*)salloc(sizeof(String));
|
||||||
s->strlength = _length(s1) + _length(s2);
|
s->strlength = _length(s1) + _length(s2);
|
||||||
s->strval = salloc(s->strlength + 1);
|
s->strval = salloc(s->strlength + 1);
|
||||||
|
@ -73,22 +73,21 @@ String *s1,*s2;
|
||||||
strcat(s->strval, s1->strval);
|
strcat(s->strval, s1->strval);
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
_strcomp(s1,s2)
|
int _strcomp(String* s1, String* s2)
|
||||||
String *s1,*s2;
|
|
||||||
{
|
{
|
||||||
okr(s1);okr(s2);
|
okr(s1);
|
||||||
|
okr(s2);
|
||||||
return (strcmp(s2->strval, s1->strval));
|
return (strcmp(s2->strval, s1->strval));
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_left(size,s)
|
String* _left(int size, String* s)
|
||||||
String *s;
|
|
||||||
int size;
|
|
||||||
{
|
{
|
||||||
String* ns;
|
String* ns;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
okr(s);
|
okr(s);
|
||||||
if( size <0 || size >s->strlength) error(3);
|
if (size < 0 || size > s->strlength)
|
||||||
|
error(3);
|
||||||
ns = (String*)salloc(sizeof(String));
|
ns = (String*)salloc(sizeof(String));
|
||||||
ns->strval = salloc(size + 1);
|
ns->strval = salloc(size + 1);
|
||||||
ns->strcount = 1;
|
ns->strcount = 1;
|
||||||
|
@ -99,8 +98,7 @@ int size;
|
||||||
return (ns);
|
return (ns);
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_space(d)
|
String* _space(int d)
|
||||||
int d;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
int i, len;
|
int i, len;
|
||||||
|
@ -116,17 +114,18 @@ int d;
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_strascii()
|
String* _strascii(void)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
String *_string(f, d)
|
String* _string(double f, double d)
|
||||||
double d,f;
|
|
||||||
{
|
{
|
||||||
int i, j;
|
int i, j;
|
||||||
String* s;
|
String* s;
|
||||||
|
|
||||||
i=d;j=f;
|
i = d;
|
||||||
if( i<0 || i>MAXSTRING) error(3);
|
j = f;
|
||||||
|
if (i < 0 || i > MAXSTRING)
|
||||||
|
error(3);
|
||||||
s = (String*)salloc(sizeof(String));
|
s = (String*)salloc(sizeof(String));
|
||||||
s->strlength = i;
|
s->strlength = i;
|
||||||
s->strcount = 1;
|
s->strcount = 1;
|
||||||
|
@ -136,49 +135,52 @@ double d,f;
|
||||||
s->strval[i] = j;
|
s->strval[i] = j;
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
_midstmt(s2,i1,i2,s)
|
void _midstmt(String* s2, int i1, int i2, String* s)
|
||||||
int i1,i2;
|
|
||||||
String *s, *s2;
|
|
||||||
{
|
{
|
||||||
int l;
|
int l;
|
||||||
|
|
||||||
/*printf("mid called %d %d %s %s\n",i1,i2,s->strval, s2->strval);*/
|
/*printf("mid called %d %d %s %s\n",i1,i2,s->strval, s2->strval);*/
|
||||||
if (i2 < 0 || i1 < -1) error(3);
|
if (i2 < 0 || i1 < -1)
|
||||||
if( s->strlength<i2 || s2->strlength < i1) error(3); /* source string too short */
|
error(3);
|
||||||
if( i1== -1) i1= s2->strlength;
|
if (s->strlength < i2 || s2->strlength < i1)
|
||||||
|
error(3); /* source string too short */
|
||||||
|
if (i1 == -1)
|
||||||
|
i1 = s2->strlength;
|
||||||
l = s->strlength - i2 + 1;
|
l = s->strlength - i2 + 1;
|
||||||
if( i1>l ) i1=l;
|
if (i1 > l)
|
||||||
|
i1 = l;
|
||||||
strncpy(s->strval + i2 - 1, s2->strval, i1);
|
strncpy(s->strval + i2 - 1, s2->strval, i1);
|
||||||
}
|
}
|
||||||
String *_mid(i1,i2,s)
|
String* _mid(int i1, int i2, String* s)
|
||||||
int i1,i2;
|
|
||||||
String *s;
|
|
||||||
{
|
{
|
||||||
int l;
|
int l;
|
||||||
String* s2;
|
String* s2;
|
||||||
|
|
||||||
/* printf("mid fcn called %d %d %s\n",i1,i2,s->strval);*/
|
/* printf("mid fcn called %d %d %s\n",i1,i2,s->strval);*/
|
||||||
if (i2 < 0 || i1 < -1) return(s2); /* or error? */
|
if (i2 < 0 || i1 < -1)
|
||||||
if( i1 == -1) i1= s->strlength;
|
return (s2); /* or error? */
|
||||||
|
if (i1 == -1)
|
||||||
|
i1 = s->strlength;
|
||||||
s2 = _newstr(s->strval);
|
s2 = _newstr(s->strval);
|
||||||
s2->strval[0] = 0;
|
s2->strval[0] = 0;
|
||||||
if( s->strlength<i2) return(s2); /* source string too short */
|
if (s->strlength < i2)
|
||||||
|
return (s2); /* source string too short */
|
||||||
l = s->strlength - i2 + 1;
|
l = s->strlength - i2 + 1;
|
||||||
if( i1>l ) i1=l;
|
if (i1 > l)
|
||||||
|
i1 = l;
|
||||||
strncpy(s2->strval, s->strval + i2 - 1, i1);
|
strncpy(s2->strval, s->strval + i2 - 1, i1);
|
||||||
s2->strval[i1] = 0;
|
s2->strval[i1] = 0;
|
||||||
return (s2);
|
return (s2);
|
||||||
}
|
}
|
||||||
|
|
||||||
String *_right(length,str)
|
String* _right(int length, String* str)
|
||||||
String *str;
|
|
||||||
int length;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
i = _length(str) - length;
|
i = _length(str) - length;
|
||||||
if(i<0) i=0;
|
if (i < 0)
|
||||||
|
i = 0;
|
||||||
s = _newstr(str->strval + i);
|
s = _newstr(str->strval + i);
|
||||||
return (s);
|
return (s);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,8 +2,7 @@
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
_intswap(i1,i2)
|
void _intswap(int* i1, int* i2)
|
||||||
int *i1,*i2;
|
|
||||||
{
|
{
|
||||||
int i3;
|
int i3;
|
||||||
i3 = *i1;
|
i3 = *i1;
|
||||||
|
@ -11,8 +10,7 @@ int *i1,*i2;
|
||||||
*i2 = i3;
|
*i2 = i3;
|
||||||
}
|
}
|
||||||
|
|
||||||
_fltswap(i1,i2)
|
void _fltswap(double* i1, double* i2)
|
||||||
double *i1,*i2;
|
|
||||||
{
|
{
|
||||||
double i3;
|
double i3;
|
||||||
i3 = *i1;
|
i3 = *i1;
|
||||||
|
@ -20,8 +18,7 @@ double *i1,*i2;
|
||||||
*i2 = i3;
|
*i2 = i3;
|
||||||
}
|
}
|
||||||
|
|
||||||
_strswap(s1,s2)
|
void _strswap(String** s1, String** s2)
|
||||||
String **s1,**s2;
|
|
||||||
{
|
{
|
||||||
String* s;
|
String* s;
|
||||||
s = *s1;
|
s = *s1;
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
_trace(i)
|
void _trace(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
printf("[%d]", i);
|
printf("[%d]", i);
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,15 +13,12 @@
|
||||||
int _trpline; /* BASIC return label */
|
int _trpline; /* BASIC return label */
|
||||||
jmp_buf trpbuf;
|
jmp_buf trpbuf;
|
||||||
|
|
||||||
_trpset(nr)
|
void _trpset(int nr)
|
||||||
int nr;
|
|
||||||
{
|
{
|
||||||
/*debug printf("trap set to %d\n",nr);*/
|
/*debug printf("trap set to %d\n",nr);*/
|
||||||
_trpline = nr;
|
_trpline = nr;
|
||||||
}
|
}
|
||||||
void
|
void _trpfatal(int i)
|
||||||
_trpfatal(i)
|
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
extern int _errsym, _erlsym;
|
extern int _errsym, _erlsym;
|
||||||
|
|
||||||
|
@ -35,7 +32,7 @@ int i;
|
||||||
_trap();
|
_trap();
|
||||||
}
|
}
|
||||||
|
|
||||||
_ini_trp()
|
void _ini_trp(void)
|
||||||
{
|
{
|
||||||
/* initialize trap routines */
|
/* initialize trap routines */
|
||||||
int i;
|
int i;
|
||||||
|
@ -44,17 +41,16 @@ _ini_trp()
|
||||||
signal(i, _trpfatal);
|
signal(i, _trpfatal);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void _settrap(int nr)
|
||||||
_settrap(nr)
|
|
||||||
int nr;
|
|
||||||
{
|
{
|
||||||
_trpline = nr;
|
_trpline = nr;
|
||||||
}
|
}
|
||||||
_trap()
|
void _trap(void)
|
||||||
{
|
{
|
||||||
int line;
|
int line;
|
||||||
|
|
||||||
if( _trpline==0) exit(-1);
|
if (_trpline == 0)
|
||||||
|
exit(-1);
|
||||||
line = _trpline;
|
line = _trpline;
|
||||||
_trpline = 0; /* should be reset by user */
|
_trpline = 0; /* should be reset by user */
|
||||||
_ini_trp();
|
_ini_trp();
|
||||||
|
|
|
@ -5,31 +5,34 @@
|
||||||
|
|
||||||
/* assume that the channel has been set */
|
/* assume that the channel has been set */
|
||||||
|
|
||||||
_wrnl()
|
void _wrnl(void)
|
||||||
{
|
{
|
||||||
if( fputc('\n',_chanwr) == EOF) error(29);
|
if (fputc('\n', _chanwr) == EOF)
|
||||||
|
error(29);
|
||||||
}
|
}
|
||||||
_wrcomma()
|
void _wrcomma(void)
|
||||||
{
|
{
|
||||||
if( fputc(',',_chanwr) == EOF) error(29);
|
if (fputc(',', _chanwr) == EOF)
|
||||||
|
error(29);
|
||||||
}
|
}
|
||||||
_wrint(i)
|
void _wrint(int i)
|
||||||
int i;
|
|
||||||
{
|
{
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
if( fputc(' ',_chanwr)==EOF) error(29);
|
if (fputc(' ', _chanwr) == EOF)
|
||||||
|
error(29);
|
||||||
fprintf(_chanwr, "%d", i);
|
fprintf(_chanwr, "%d", i);
|
||||||
if( ferror(_chanwr) ) error(29);
|
if (ferror(_chanwr))
|
||||||
|
error(29);
|
||||||
}
|
}
|
||||||
_wrflt(f)
|
void _wrflt(double f)
|
||||||
double f;
|
|
||||||
{
|
{
|
||||||
fprintf(_chanwr, "%f", f);
|
fprintf(_chanwr, "%f", f);
|
||||||
if( ferror(_chanwr) ) error(29);
|
if (ferror(_chanwr))
|
||||||
|
error(29);
|
||||||
}
|
}
|
||||||
_wrstr(s)
|
void _wrstr(String* s)
|
||||||
String *s;
|
|
||||||
{
|
{
|
||||||
fprintf(_chanwr, "\"%s\"", s->strval);
|
fprintf(_chanwr, "\"%s\"", s->strval);
|
||||||
if( ferror(_chanwr) ) error(29);
|
if (ferror(_chanwr))
|
||||||
|
error(29);
|
||||||
}
|
}
|
||||||
|
|
|
@ -123,7 +123,7 @@ struct idf* str2idf(char tg[], int cpy)
|
||||||
int size;
|
int size;
|
||||||
|
|
||||||
IDF_STARTHASH(hash);
|
IDF_STARTHASH(hash);
|
||||||
while (c = *cp++)
|
while ((c = *cp++))
|
||||||
{
|
{
|
||||||
IDF_ENHASH(hash, c);
|
IDF_ENHASH(hash, c);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue