/[cvs]/stack/stack.c
ViewVC logotype

Diff of /stack/stack.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.87 by masse, Fri Feb 15 18:27:18 2002 UTC revision 1.95 by masse, Sun Mar 10 06:34:01 2002 UTC
# Line 1  Line 1 
1    /*
2        stack - an interactive interpreter for a stack-based language
3        Copyright (C) 2002  Mats Alritzson and Teddy Hogeborn
4    
5        This program is free software; you can redistribute it and/or modify
6        it under the terms of the GNU General Public License as published by
7        the Free Software Foundation; either version 2 of the License, or
8        (at your option) any later version.
9    
10        This program is distributed in the hope that it will be useful,
11        but WITHOUT ANY WARRANTY; without even the implied warranty of
12        MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13        GNU General Public License for more details.
14    
15        You should have received a copy of the GNU General Public License
16        along with this program; if not, write to the Free Software
17        Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18    
19        Authors: Mats Alritzson <masse@fukt.bth.se>
20                 Teddy Hogeborn <teddy@fukt.bth.se>
21    */
22    
23  /* printf, sscanf, fgets, fprintf, fopen, perror */  /* printf, sscanf, fgets, fprintf, fopen, perror */
24  #include <stdio.h>  #include <stdio.h>
25  /* exit, EXIT_SUCCESS, malloc, free */  /* exit, EXIT_SUCCESS, malloc, free */
# Line 8  Line 30 
30  #include <dlfcn.h>  #include <dlfcn.h>
31  /* strcmp, strcpy, strlen, strcat, strdup */  /* strcmp, strcpy, strlen, strcat, strdup */
32  #include <string.h>  #include <string.h>
33  /* getopt, STDIN_FILENO, STDOUT_FILENO */  /* getopt, STDIN_FILENO, STDOUT_FILENO, usleep */
34  #include <unistd.h>  #include <unistd.h>
35  /* EX_NOINPUT, EX_USAGE */  /* EX_NOINPUT, EX_USAGE */
36  #include <sysexits.h>  #include <sysexits.h>
37  /* mtrace, muntrace */  /* mtrace, muntrace */
38  #include <mcheck.h>  #include <mcheck.h>
39    /* ioctl */
40    #include <sys/ioctl.h>
41    /* KDMKTONE */
42    #include <linux/kd.h>
43    
44  #define HASHTBLSIZE 2048  #include "stack.h"
   
 /* First, define some types. */  
   
 /* A value of some type */  
 typedef struct {  
   enum {  
     integer,  
     string,  
     func,                       /* Function pointer */  
     symb,  
     list  
   } type;                       /* Type of stack element */  
   
   union {  
     void *ptr;                  /* Pointer to the content */  
     int val;                    /* ...or an integer */  
   } content;                    /* Stores a pointer or an integer */  
   
   int gc_garb;  
   
 } value;  
   
 /* A symbol with a name and possible value */  
 /* (These do not need reference counters, they are kept unique by  
    hashing.) */  
 typedef struct symbol_struct {  
   char *id;                     /* Symbol name */  
   value *val;                   /* The value (if any) bound to it */  
   struct symbol_struct *next;   /* In case of hashing conflicts, a */  
 } symbol;                       /* symbol is a kind of stack item. */  
   
 /* A type for a hash table for symbols */  
 typedef symbol *hashtbl[HASHTBLSIZE]; /* Hash table declaration */  
   
 /* An item (value) on a stack */  
 typedef struct stackitem_struct  
 {  
   value *item;                  /* The value on the stack */  
                                 /* (This is never NULL) */  
   struct stackitem_struct *next; /* Next item */  
 } stackitem;  
   
 /* An environment; gives access to the stack and a hash table of  
    defined symbols */  
 typedef struct {  
   stackitem *gc_ref;  
   int gc_limit, gc_count;  
   
   stackitem *head;              /* Head of the stack */  
   hashtbl symbols;              /* Hash table of all variable bindings */  
   int err;                      /* Error flag */  
   char *in_string;              /* Input pending to be read */  
   char *free_string;            /* Free this string when all input is  
                                    read from in_string */  
   FILE *inputstream;            /* stdin or a file, most likely */  
   int interactive;              /* print prompts, stack, etc */  
 } environment;  
   
 /* A type for pointers to external functions */  
 typedef void (*funcp)(environment *); /* funcp is a pointer to a void  
                                          function (environment *) */  
45    
46  /* Initialize a newly created environment */  /* Initialize a newly created environment */
47  void init_env(environment *env)  void init_env(environment *env)
# Line 85  void init_env(environment *env) Line 50  void init_env(environment *env)
50    
51    env->gc_limit= 20;    env->gc_limit= 20;
52    env->gc_count= 0;    env->gc_count= 0;
53      env->gc_ref= NULL;
54      env->gc_protect= NULL;
55    
56    env->head= NULL;    env->head= NULL;
57    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
# Line 96  void init_env(environment *env) Line 63  void init_env(environment *env)
63    env->interactive= 1;    env->interactive= 1;
64  }  }
65    
66  void printerr(const char* in_string) {  void printerr(const char* in_string)
67    {
68    fprintf(stderr, "Err: %s\n", in_string);    fprintf(stderr, "Err: %s\n", in_string);
69  }  }
70    
# Line 107  extern void toss(environment *env) Line 75  extern void toss(environment *env)
75    
76    if((env->head)==NULL) {    if((env->head)==NULL) {
77      printerr("Too Few Arguments");      printerr("Too Few Arguments");
78      env->err=1;      env->err= 1;
79      return;      return;
80    }    }
81        
82    env->head= env->head->next;   /* Remove the top stack item */    env->head= env->head->next;   /* Remove the top stack item */
83    free(temp);                   /* Free the old top stack item */    free(temp);                   /* Free the old top stack item */
84    
85      env->gc_limit--;
86      gc_init(env);
87  }  }
88    
89  /* Returns a pointer to a pointer to an element in the hash table. */  /* Returns a pointer to a pointer to an element in the hash table. */
# Line 144  symbol **hash(hashtbl in_hashtbl, const Line 115  symbol **hash(hashtbl in_hashtbl, const
115    }    }
116  }  }
117    
118  extern void gc_init(environment*);  /* Create new value */
119    value* new_val(environment *env)
120  value* new_val(environment *env) {  {
121    value *nval= malloc(sizeof(value));    value *nval= malloc(sizeof(value));
122    stackitem *nitem= malloc(sizeof(stackitem));    stackitem *nitem= malloc(sizeof(stackitem));
123    
   if(env->gc_count >= env->gc_limit)  
     gc_init(env);  
   
124    nval->content.ptr= NULL;    nval->content.ptr= NULL;
125    
126    nitem->item= nval;    nitem->item= nval;
# Line 161  value* new_val(environment *env) { Line 129  value* new_val(environment *env) {
129    
130    env->gc_count++;    env->gc_count++;
131    
132      protect(env, nval);
133      gc_init(env);
134      unprotect(env);
135    
136    return nval;    return nval;
137  }  }
138    
139  void gc_mark(value *val) {  /* Mark values recursively.
140       Marked values are not collected by the GC. */
141    void gc_mark(value *val)
142    {
143    stackitem *iterator;    stackitem *iterator;
144    
145    if(val==NULL || val->gc_garb==0)    if(val==NULL || val->gc_garb==0)
# Line 182  void gc_mark(value *val) { Line 157  void gc_mark(value *val) {
157    }    }
158  }  }
159    
160  extern void gc_init(environment *env) {  /* Start GC */
161    stackitem *new_head= NULL, *titem, *iterator= env->gc_ref;  extern void gc_init(environment *env)
162    {
163      stackitem *new_head= NULL, *titem, *iterator;
164    symbol *tsymb;    symbol *tsymb;
165    int i;    int i;
166    
167      if(env->gc_count < env->gc_limit)
168        return;
169    
170      /* Garb by default */
171      iterator= env->gc_ref;
172    while(iterator!=NULL) {    while(iterator!=NULL) {
173      iterator->item->gc_garb= 1;      iterator->item->gc_garb= 1;
174      iterator= iterator->next;      iterator= iterator->next;
175    }    }
176    
177    /* Mark */    /* Mark protected values */
178      iterator= env->gc_protect;
179      while(iterator!=NULL) {
180        gc_mark(iterator->item);
181        iterator= iterator->next;
182      }
183    
184      /* Mark values on stack */
185    iterator= env->head;    iterator= env->head;
186    while(iterator!=NULL) {    while(iterator!=NULL) {
187      gc_mark(iterator->item);      gc_mark(iterator->item);
188      iterator= iterator->next;      iterator= iterator->next;
189    }    }
190    
191      /* Mark values in hashtable */
192    for(i= 0; i<HASHTBLSIZE; i++) {    for(i= 0; i<HASHTBLSIZE; i++) {
193      tsymb= env->symbols[i];      tsymb= env->symbols[i];
194      while(tsymb!=NULL) {      while(tsymb!=NULL) {
# Line 209  extern void gc_init(environment *env) { Line 199  extern void gc_init(environment *env) {
199    
200    env->gc_count= 0;    env->gc_count= 0;
201    
202    /* Sweep */    while(env->gc_ref!=NULL) {    /* Sweep unused values */
203    while(env->gc_ref!=NULL) {  
204      if(env->gc_ref->item->gc_garb) {      if(env->gc_ref->item->gc_garb) {
205        switch(env->gc_ref->item->type) {  
206          switch(env->gc_ref->item->type) { /* Remove content */
207        case string:        case string:
208          free(env->gc_ref->item->content.ptr);          free(env->gc_ref->item->content.ptr);
209          break;          break;
       case integer:  
         break;  
210        case list:        case list:
211          while(env->gc_ref->item->content.ptr!=NULL) {          while(env->gc_ref->item->content.ptr!=NULL) {
212            titem= env->gc_ref->item->content.ptr;            titem= env->gc_ref->item->content.ptr;
# Line 228  extern void gc_init(environment *env) { Line 217  extern void gc_init(environment *env) {
217        default:        default:
218          break;          break;
219        }        }
220        free(env->gc_ref->item);        free(env->gc_ref->item);  /* Remove from gc_ref */
221        titem= env->gc_ref->next;        titem= env->gc_ref->next;
222        free(env->gc_ref);        free(env->gc_ref);        /* Remove value */
223        env->gc_ref= titem;        env->gc_ref= titem;
224      } else {      } else {                    /* Keep values */
225        titem= env->gc_ref->next;        titem= env->gc_ref->next;
226        env->gc_ref->next= new_head;        env->gc_ref->next= new_head;
227        new_head= env->gc_ref;        new_head= env->gc_ref;
# Line 241  extern void gc_init(environment *env) { Line 230  extern void gc_init(environment *env) {
230      }      }
231    }    }
232    
233    env->gc_limit= env->gc_count+20;    env->gc_limit= env->gc_count*2;
234    env->gc_ref= new_head;    env->gc_ref= new_head;
235  }  }
236    
237    /* Protect values from GC */
238    void protect(environment *env, value *val)
239    {
240      stackitem *new_item= malloc(sizeof(stackitem));
241      new_item->item= val;
242      new_item->next= env->gc_protect;
243      env->gc_protect= new_item;
244    }
245    
246    /* Unprotect values from GC */
247    void unprotect(environment *env)
248    {
249      stackitem *temp= env->gc_protect;
250      env->gc_protect= env->gc_protect->next;
251      free(temp);
252    }
253    
254  /* Push a value onto the stack */  /* Push a value onto the stack */
255  void push_val(environment *env, value *val)  void push_val(environment *env, value *val)
256  {  {
# Line 254  void push_val(environment *env, value *v Line 260  void push_val(environment *env, value *v
260    env->head= new_item;    env->head= new_item;
261  }  }
262    
263  /* Push an integer onto the stack. */  /* Push an integer onto the stack */
264  void push_int(environment *env, int in_val)  void push_int(environment *env, int in_val)
265  {  {
266    value *new_value= new_val(env);    value *new_value= new_val(env);
267        
268    new_value->content.val= in_val;    new_value->content.i= in_val;
269    new_value->type= integer;    new_value->type= integer;
270    
271    push_val(env, new_value);    push_val(env, new_value);
272  }  }
273    
274    /* Push a floating point number onto the stack */
275    void push_float(environment *env, float in_val)
276    {
277      value *new_value= new_val(env);
278    
279      new_value->content.f= in_val;
280      new_value->type= tfloat;
281    
282      push_val(env, new_value);
283    }
284    
285  /* Copy a string onto the stack. */  /* Copy a string onto the stack. */
286  void push_cstring(environment *env, const char *in_string)  void push_cstring(environment *env, const char *in_string)
287  {  {
# Line 278  void push_cstring(environment *env, cons Line 295  void push_cstring(environment *env, cons
295  }  }
296    
297  /* Mangle a symbol name to a valid C identifier name */  /* Mangle a symbol name to a valid C identifier name */
298  char *mangle_str(const char *old_string){  char *mangle_str(const char *old_string)
299    char validchars[]  {
300      ="0123456789abcdef";    char validchars[]= "0123456789abcdef";
301    char *new_string, *current;    char *new_string, *current;
302    
303    new_string=malloc((strlen(old_string)*2)+4);    new_string= malloc((strlen(old_string)*2)+4);
304    strcpy(new_string, "sx_");    /* Stack eXternal */    strcpy(new_string, "sx_");    /* Stack eXternal */
305    current=new_string+3;    current= new_string+3;
306    while(old_string[0] != '\0'){    while(old_string[0] != '\0'){
307      current[0]=validchars[(unsigned char)(old_string[0])/16];      current[0]= validchars[(unsigned char)(old_string[0])/16];
308      current[1]=validchars[(unsigned char)(old_string[0])%16];      current[1]= validchars[(unsigned char)(old_string[0])%16];
309      current+=2;      current+= 2;
310      old_string++;      old_string++;
311    }    }
312    current[0]='\0';    current[0]= '\0';
313    
314    return new_string;            /* The caller must free() it */    return new_string;            /* The caller must free() it */
315  }  }
316    
317  extern void mangle(environment *env){  extern void mangle(environment *env)
318    {
319    char *new_string;    char *new_string;
320    
321    if((env->head)==NULL) {    if((env->head)==NULL) {
322      printerr("Too Few Arguments");      printerr("Too Few Arguments");
323      env->err=1;      env->err= 1;
324      return;      return;
325    }    }
326    
327    if(env->head->item->type!=string) {    if(env->head->item->type!=string) {
328      printerr("Bad Argument Type");      printerr("Bad Argument Type");
329      env->err=2;      env->err= 2;
330      return;      return;
331    }    }
332    
# Line 336  void push_sym(environment *env, const ch Line 354  void push_sym(environment *env, const ch
354    char *mangled;                /* Mangled function name */    char *mangled;                /* Mangled function name */
355    
356    new_value= new_val(env);    new_value= new_val(env);
357      protect(env, new_value);
358      new_fvalue= new_val(env);
359      protect(env, new_fvalue);
360    
361    /* The new value is a symbol */    /* The new value is a symbol */
362    new_value->type= symb;    new_value->type= symb;
# Line 361  void push_sym(environment *env, const ch Line 382  void push_sym(environment *env, const ch
382      if(handle==NULL)            /* If no handle */      if(handle==NULL)            /* If no handle */
383        handle= dlopen(NULL, RTLD_LAZY);        handle= dlopen(NULL, RTLD_LAZY);
384    
385      mangled=mangle_str(in_string); /* mangle the name */      mangled= mangle_str(in_string); /* mangle the name */
386      funcptr= dlsym(handle, mangled); /* and try to find it */      funcptr= dlsym(handle, mangled); /* and try to find it */
387      free(mangled);  
388      dlerr=dlerror();      dlerr= dlerror();
389      if(dlerr != NULL) {         /* If no function was found */      if(dlerr != NULL) {         /* If no function was found */
390        funcptr= dlsym(handle, in_string); /* Get function pointer */        funcptr= dlsym(handle, in_string); /* Get function pointer */
391        dlerr=dlerror();        dlerr= dlerror();
392      }      }
393    
394      if(dlerr==NULL) {           /* If a function was found */      if(dlerr==NULL) {           /* If a function was found */
395        new_fvalue= new_val(env); /* Create a new value */        new_fvalue->type= func;   /* The new value is a function pointer */
396        new_fvalue->type=func;    /* The new value is a function pointer */        new_fvalue->content.ptr= funcptr; /* Store function pointer */
       new_fvalue->content.ptr=funcptr; /* Store function pointer */  
397        (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new        (*new_symbol)->val= new_fvalue; /* Bind the symbol to the new
398                                           function value */                                           function value */
399      }      }
400    
401        free(mangled);
402    }    }
403    
404    push_val(env, new_value);    push_val(env, new_value);
405      unprotect(env); unprotect(env);
406  }  }
407    
408  /* Print newline. */  /* Print newline. */
# Line 387  extern void nl() Line 412  extern void nl()
412  }  }
413    
414  /* Gets the type of a value */  /* Gets the type of a value */
415  extern void type(environment *env){  extern void type(environment *env)
416    {
417    int typenum;    int typenum;
418    
419    if((env->head)==NULL) {    if((env->head)==NULL) {
# Line 401  extern void type(environment *env){ Line 427  extern void type(environment *env){
427    case integer:    case integer:
428      push_sym(env, "integer");      push_sym(env, "integer");
429      break;      break;
430      case tfloat:
431        push_sym(env, "float");
432        break;
433    case string:    case string:
434      push_sym(env, "string");      push_sym(env, "string");
435      break;      break;
# Line 421  void print_h(stackitem *stack_head, int Line 450  void print_h(stackitem *stack_head, int
450  {  {
451    switch(stack_head->item->type) {    switch(stack_head->item->type) {
452    case integer:    case integer:
453      printf("%d", stack_head->item->content.val);      printf("%d", stack_head->item->content.i);
454        break;
455      case tfloat:
456        printf("%f", stack_head->item->content.f);
457      break;      break;
458    case string:    case string:
459      if(noquote)      if(noquote)
# Line 449  void print_h(stackitem *stack_head, int Line 481  void print_h(stackitem *stack_head, int
481    }    }
482  }  }
483    
484  extern void print_(environment *env) {  extern void print_(environment *env)
485    {
486    if(env->head==NULL) {    if(env->head==NULL) {
487      printerr("Too Few Arguments");      printerr("Too Few Arguments");
488      env->err=1;      env->err=1;
# Line 467  extern void print(environment *env) Line 500  extern void print(environment *env)
500    toss(env);    toss(env);
501  }  }
502    
503  extern void princ_(environment *env) {  extern void princ_(environment *env)
504    {
505    if(env->head==NULL) {    if(env->head==NULL) {
506      printerr("Too Few Arguments");      printerr("Too Few Arguments");
507      env->err=1;      env->err=1;
# Line 501  extern void printstack(environment *env) Line 535  extern void printstack(environment *env)
535      printf("Stack Empty\n");      printf("Stack Empty\n");
536      return;      return;
537    }    }
538    
539    print_st(env->head, 1);    print_st(env->head, 1);
540  }  }
541    
# Line 560  extern void rcl(environment *env) Line 595  extern void rcl(environment *env)
595      env->err=3;      env->err=3;
596      return;      return;
597    }    }
598      protect(env, val);
599    toss(env);            /* toss the symbol */    toss(env);            /* toss the symbol */
600    if(env->err) return;    if(env->err) return;
601    push_val(env, val); /* Return its bound value */    push_val(env, val); /* Return its bound value */
602      unprotect(env);
603  }  }
604    
605  /* If the top element is a symbol, determine if it's bound to a  /* If the top element is a symbol, determine if it's bound to a
# Line 597  extern void eval(environment *env) Line 634  extern void eval(environment *env)
634      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
635      toss(env);      toss(env);
636      if(env->err) return;      if(env->err) return;
637      return (*in_func)(env);      return in_func(env);
638    
639      /* If it's a list */      /* If it's a list */
640    case list:    case list:
641      temp_val= env->head->item;      temp_val= env->head->item;
642      toss(env);      protect(env, temp_val);
643      if(env->err) return;  
644        toss(env); if(env->err) return;
645      iterator= (stackitem*)temp_val->content.ptr;      iterator= (stackitem*)temp_val->content.ptr;
646        
647      while(iterator!=NULL) {      while(iterator!=NULL) {
648        push_val(env, iterator->item);        push_val(env, iterator->item);
649          
650        if(env->head->item->type==symb        if(env->head->item->type==symb
651          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {          && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
652          toss(env);          toss(env);
653          if(env->err) return;          if(env->err) return;
654            
655          if(iterator->next == NULL){          if(iterator->next == NULL){
656            goto eval_start;            goto eval_start;
657          }          }
# Line 619  extern void eval(environment *env) Line 660  extern void eval(environment *env)
660        }        }
661        iterator= iterator->next;        iterator= iterator->next;
662      }      }
663        unprotect(env);
664      return;      return;
665    
666    default:    default:
# Line 627  extern void eval(environment *env) Line 669  extern void eval(environment *env)
669  }  }
670    
671  /* Reverse (flip) a list */  /* Reverse (flip) a list */
672  extern void rev(environment *env){  extern void rev(environment *env)
673    {
674    stackitem *old_head, *new_head, *item;    stackitem *old_head, *new_head, *item;
675    
676    if((env->head)==NULL) {    if((env->head)==NULL) {
677      printerr("Too Few Arguments");      printerr("Too Few Arguments");
678      env->err=1;      env->err= 1;
679      return;      return;
680    }    }
681    
682    if(env->head->item->type!=list) {    if(env->head->item->type!=list) {
683      printerr("Bad Argument Type");      printerr("Bad Argument Type");
684      env->err=2;      env->err= 2;
685      return;      return;
686    }    }
687    
688    old_head=(stackitem *)(env->head->item->content.ptr);    old_head= (stackitem *)(env->head->item->content.ptr);
689    new_head=NULL;    new_head= NULL;
690    while(old_head != NULL){    while(old_head != NULL){
691      item=old_head;      item= old_head;
692      old_head=old_head->next;      old_head= old_head->next;
693      item->next=new_head;      item->next= new_head;
694      new_head=item;      new_head= item;
695    }    }
696    env->head->item->content.ptr=new_head;    env->head->item->content.ptr= new_head;
697  }  }
698    
699  /* Make a list. */  /* Make a list. */
# Line 660  extern void pack(environment *env) Line 703  extern void pack(environment *env)
703    value *pack;    value *pack;
704    
705    iterator= env->head;    iterator= env->head;
706      pack= new_val(env);
707      protect(env, pack);
708    
709    if(iterator==NULL    if(iterator==NULL
710       || (iterator->item->type==symb       || (iterator->item->type==symb
# Line 677  extern void pack(environment *env) Line 722  extern void pack(environment *env)
722      temp= env->head;      temp= env->head;
723      env->head= iterator->next;      env->head= iterator->next;
724      iterator->next= NULL;      iterator->next= NULL;
725    
726        pack->type= list;
727        pack->content.ptr= temp;
728            
729      if(env->head!=NULL)      if(env->head!=NULL)
730        toss(env);        toss(env);
731    }    }
732    
733    /* Push list */    /* Push list */
   pack= new_val(env);  
   pack->type= list;  
   pack->content.ptr= temp;  
734    
735    push_val(env, pack);    push_val(env, pack);
736    rev(env);    rev(env);
737    
738      unprotect(env);
739  }  }
740    
741  /* Relocate elements of the list on the stack. */  /* Relocate elements of the list on the stack. */
# Line 699  extern void expand(environment *env) Line 746  extern void expand(environment *env)
746    /* Is top element a list? */    /* Is top element a list? */
747    if(env->head==NULL) {    if(env->head==NULL) {
748      printerr("Too Few Arguments");      printerr("Too Few Arguments");
749      env->err=1;      env->err= 1;
750      return;      return;
751    }    }
752    if(env->head->item->type!=list) {    if(env->head->item->type!=list) {
753      printerr("Bad Argument Type");      printerr("Bad Argument Type");
754      env->err=2;      env->err= 2;
755      return;      return;
756    }    }
757    
# Line 736  extern void eq(environment *env) Line 783  extern void eq(environment *env)
783    
784    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
785      printerr("Too Few Arguments");      printerr("Too Few Arguments");
786      env->err=1;      env->err= 1;
787      return;      return;
788    }    }
789    
# Line 756  extern void not(environment *env) Line 803  extern void not(environment *env)
803    
804    if((env->head)==NULL) {    if((env->head)==NULL) {
805      printerr("Too Few Arguments");      printerr("Too Few Arguments");
806      env->err=1;      env->err= 1;
807      return;      return;
808    }    }
809    
810    if(env->head->item->type!=integer) {    if(env->head->item->type!=integer) {
811      printerr("Bad Argument Type");      printerr("Bad Argument Type");
812      env->err=2;      env->err= 2;
813      return;      return;
814    }    }
815    
816    val= env->head->item->content.val;    val= env->head->item->content.i;
817    toss(env);    toss(env);
818    push_int(env, !val);    push_int(env, !val);
819  }  }
# Line 787  extern void def(environment *env) Line 834  extern void def(environment *env)
834    /* Needs two values on the stack, the top one must be a symbol */    /* Needs two values on the stack, the top one must be a symbol */
835    if(env->head==NULL || env->head->next==NULL) {    if(env->head==NULL || env->head->next==NULL) {
836      printerr("Too Few Arguments");      printerr("Too Few Arguments");
837      env->err=1;      env->err= 1;
838      return;      return;
839    }    }
840    
841    if(env->head->item->type!=symb) {    if(env->head->item->type!=symb) {
842      printerr("Bad Argument Type");      printerr("Bad Argument Type");
843      env->err=2;      env->err= 2;
844      return;      return;
845    }    }
846    
847    /* long names are a pain */    /* long names are a pain */
848    sym=env->head->item->content.ptr;    sym= env->head->item->content.ptr;
   
   /* if the symbol was bound to something else, throw it away */  
849    
850    /* Bind the symbol to the value */    /* Bind the symbol to the value */
851    sym->val= env->head->next->item;    sym->val= env->head->next->item;
# Line 808  extern void def(environment *env) Line 853  extern void def(environment *env)
853    toss(env); toss(env);    toss(env); toss(env);
854  }  }
855    
 extern void clear(environment *);  
 void forget_sym(symbol **);  
   
856  /* Quit stack. */  /* Quit stack. */
857  extern void quit(environment *env)  extern void quit(environment *env)
858  {  {
859    long i;    int i;
860    
861    clear(env);    clear(env);
862    
# Line 826  extern void quit(environment *env) Line 868  extern void quit(environment *env)
868      env->symbols[i]= NULL;      env->symbols[i]= NULL;
869    }    }
870    
871      env->gc_limit= 0;
872    gc_init(env);    gc_init(env);
873    
874    if(env->free_string!=NULL)    if(env->free_string!=NULL)
# Line 859  extern void words(environment *env) Line 902  extern void words(environment *env)
902  }  }
903    
904  /* Internal forget function */  /* Internal forget function */
905  void forget_sym(symbol **hash_entry) {  void forget_sym(symbol **hash_entry)
906    {
907    symbol *temp;    symbol *temp;
908    
909    temp= *hash_entry;    temp= *hash_entry;
# Line 894  extern void forget(environment *env) Line 938  extern void forget(environment *env)
938  }  }
939    
940  /* Returns the current error number to the stack */  /* Returns the current error number to the stack */
941  extern void errn(environment *env){  extern void errn(environment *env)
942    {
943    push_int(env, env->err);    push_int(env, env->err);
944  }  }
945    
 extern void sx_72656164(environment*);  
   
946  int main(int argc, char **argv)  int main(int argc, char **argv)
947  {  {
948    environment myenv;    environment myenv;
# Line 936  int main(int argc, char **argv) Line 979  int main(int argc, char **argv)
979      }      }
980    }    }
981    
982      if(myenv.interactive) {
983        printf("Stack version $Revision$\n\
984    Copyright (C) 2002  Mats Alritzson and Teddy Hogeborn\n\
985    Stack comes with ABSOLUTELY NO WARRANTY; for details type `warranty;'.\n\
986    This is free software, and you are welcome to redistribute it\n\
987    under certain conditions; type `copying;' for details.\n");
988      }
989    
990    while(1) {    while(1) {
991      if(myenv.in_string==NULL) {      if(myenv.in_string==NULL) {
992        if (myenv.interactive) {        if (myenv.interactive) {
# Line 950  int main(int argc, char **argv) Line 1001  int main(int argc, char **argv)
1001      }      }
1002      sx_72656164(&myenv);      sx_72656164(&myenv);
1003      if (myenv.err==4) {      if (myenv.err==4) {
1004        return EX_NOINPUT;        return EXIT_SUCCESS;      /* EOF */
1005      } else if(myenv.head!=NULL      } else if(myenv.head!=NULL
1006                && myenv.head->item->type==symb                && myenv.head->item->type==symb
1007                && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {                && ((symbol*)(myenv.head->item->content.ptr))->id[0]==';') {
1008        toss(&myenv);             /* No error check in main */        toss(&myenv);             /* No error check in main */
1009        eval(&myenv);        eval(&myenv);
1010      }      }
1011        gc_init(&myenv);
1012    }    }
1013    quit(&myenv);    quit(&myenv);
1014    return EXIT_FAILURE;    return EXIT_FAILURE;
1015  }  }
1016    
1017  /* "+" */  /* "+" */
1018  extern void sx_2b(environment *env) {  extern void sx_2b(environment *env)
1019    {
1020    int a, b;    int a, b;
1021      float fa, fb;
1022    size_t len;    size_t len;
1023    char* new_string;    char* new_string;
1024    value *a_val, *b_val;    value *a_val, *b_val;
1025    
1026    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1027      printerr("Too Few Arguments");      printerr("Too Few Arguments");
1028      env->err=1;      env->err= 1;
1029      return;      return;
1030    }    }
1031    
# Line 979  extern void sx_2b(environment *env) { Line 1033  extern void sx_2b(environment *env) {
1033       && env->head->next->item->type==string) {       && env->head->next->item->type==string) {
1034      a_val= env->head->item;      a_val= env->head->item;
1035      b_val= env->head->next->item;      b_val= env->head->next->item;
1036        protect(env, a_val); protect(env, b_val);
1037      toss(env); if(env->err) return;      toss(env); if(env->err) return;
1038      toss(env); if(env->err) return;      toss(env); if(env->err) return;
1039      len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;      len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
# Line 986  extern void sx_2b(environment *env) { Line 1041  extern void sx_2b(environment *env) {
1041      strcpy(new_string, b_val->content.ptr);      strcpy(new_string, b_val->content.ptr);
1042      strcat(new_string, a_val->content.ptr);      strcat(new_string, a_val->content.ptr);
1043      push_cstring(env, new_string);      push_cstring(env, new_string);
1044        unprotect(env); unprotect(env);
1045      free(new_string);      free(new_string);
1046        
1047      return;      return;
1048    }    }
1049        
1050    if(env->head->item->type!=integer    if(env->head->item->type==integer
1051       || env->head->next->item->type!=integer) {       && env->head->next->item->type==integer) {
1052      printerr("Bad Argument Type");      a=env->head->item->content.i;
1053      env->err=2;      toss(env); if(env->err) return;
1054        b=env->head->item->content.i;
1055        toss(env); if(env->err) return;
1056        push_int(env, b+a);
1057    
1058      return;      return;
1059    }    }
1060    a=env->head->item->content.val;  
1061    toss(env); if(env->err) return;    if(env->head->item->type==tfloat
1062           && env->head->next->item->type==tfloat) {
1063    b=env->head->item->content.val;      fa= env->head->item->content.f;
1064    toss(env); if(env->err) return;      toss(env); if(env->err) return;
1065    push_int(env, a+b);      fb= env->head->item->content.f;
1066        toss(env); if(env->err) return;
1067        push_float(env, fb+fa);
1068        
1069        return;
1070      }
1071    
1072      if(env->head->item->type==tfloat
1073         && env->head->next->item->type==integer) {
1074        fa= env->head->item->content.f;
1075        toss(env); if(env->err) return;
1076        b= env->head->item->content.i;
1077        toss(env); if(env->err) return;
1078        push_float(env, b+fa);
1079        
1080        return;
1081      }
1082    
1083      if(env->head->item->type==integer
1084         && env->head->next->item->type==tfloat) {
1085        a= env->head->item->content.i;
1086        toss(env); if(env->err) return;
1087        fb= env->head->item->content.f;
1088        toss(env); if(env->err) return;
1089        push_float(env, fb+a);
1090    
1091        return;
1092      }
1093    
1094      printerr("Bad Argument Type");
1095      env->err=2;
1096  }  }
1097    
1098  /* "-" */  /* "-" */
1099  extern void sx_2d(environment *env) {  extern void sx_2d(environment *env)
1100    {
1101    int a, b;    int a, b;
1102      float fa, fb;
1103    
1104    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1105      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 1014  extern void sx_2d(environment *env) { Line 1107  extern void sx_2d(environment *env) {
1107      return;      return;
1108    }    }
1109        
1110    if(env->head->item->type!=integer    if(env->head->item->type==integer
1111       || env->head->next->item->type!=integer) {       && env->head->next->item->type==integer) {
1112      printerr("Bad Argument Type");      a=env->head->item->content.i;
1113      env->err=2;      toss(env); if(env->err) return;
1114        b=env->head->item->content.i;
1115        toss(env); if(env->err) return;
1116        push_int(env, b-a);
1117    
1118      return;      return;
1119    }    }
1120    a=env->head->item->content.val;  
1121    toss(env); if(env->err) return;    if(env->head->item->type==tfloat
1122    b=env->head->item->content.val;       && env->head->next->item->type==tfloat) {
1123    toss(env); if(env->err) return;      fa= env->head->item->content.f;
1124    push_int(env, b-a);      toss(env); if(env->err) return;
1125        fb= env->head->item->content.f;
1126        toss(env); if(env->err) return;
1127        push_float(env, fb-fa);
1128        
1129        return;
1130      }
1131    
1132      if(env->head->item->type==tfloat
1133         && env->head->next->item->type==integer) {
1134        fa= env->head->item->content.f;
1135        toss(env); if(env->err) return;
1136        b= env->head->item->content.i;
1137        toss(env); if(env->err) return;
1138        push_float(env, b-fa);
1139        
1140        return;
1141      }
1142    
1143      if(env->head->item->type==integer
1144         && env->head->next->item->type==tfloat) {
1145        a= env->head->item->content.i;
1146        toss(env); if(env->err) return;
1147        fb= env->head->item->content.f;
1148        toss(env); if(env->err) return;
1149        push_float(env, fb-a);
1150    
1151        return;
1152      }
1153    
1154      printerr("Bad Argument Type");
1155      env->err=2;
1156  }  }
1157    
1158  /* ">" */  /* ">" */
1159  extern void sx_3e(environment *env) {  extern void sx_3e(environment *env)
1160    {
1161    int a, b;    int a, b;
1162      float fa, fb;
1163    
1164    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1165      printerr("Too Few Arguments");      printerr("Too Few Arguments");
# Line 1037  extern void sx_3e(environment *env) { Line 1167  extern void sx_3e(environment *env) {
1167      return;      return;
1168    }    }
1169        
1170    if(env->head->item->type!=integer    if(env->head->item->type==integer
1171       || env->head->next->item->type!=integer) {       && env->head->next->item->type==integer) {
1172      printerr("Bad Argument Type");      a=env->head->item->content.i;
1173      env->err=2;      toss(env); if(env->err) return;
1174        b=env->head->item->content.i;
1175        toss(env); if(env->err) return;
1176        push_int(env, b>a);
1177    
1178      return;      return;
1179    }    }
1180    a=env->head->item->content.val;  
1181    toss(env); if(env->err) return;    if(env->head->item->type==tfloat
1182    b=env->head->item->content.val;       && env->head->next->item->type==tfloat) {
1183    toss(env); if(env->err) return;      fa= env->head->item->content.f;
1184    push_int(env, b>a);      toss(env); if(env->err) return;
1185        fb= env->head->item->content.f;
1186        toss(env); if(env->err) return;
1187        push_int(env, fb>fa);
1188        
1189        return;
1190      }
1191    
1192      if(env->head->item->type==tfloat
1193         && env->head->next->item->type==integer) {
1194        fa= env->head->item->content.f;
1195        toss(env); if(env->err) return;
1196        b= env->head->item->content.i;
1197        toss(env); if(env->err) return;
1198        push_int(env, b>fa);
1199        
1200        return;
1201      }
1202    
1203      if(env->head->item->type==integer
1204         && env->head->next->item->type==tfloat) {
1205        a= env->head->item->content.i;
1206        toss(env); if(env->err) return;
1207        fb= env->head->item->content.f;
1208        toss(env); if(env->err) return;
1209        push_int(env, fb>a);
1210    
1211        return;
1212      }
1213    
1214      printerr("Bad Argument Type");
1215      env->err=2;
1216    }
1217    
1218    /* "<" */
1219    extern void sx_3c(environment *env)
1220    {
1221      swap(env); if(env->err) return;
1222      sx_3e(env);
1223    }
1224    
1225    /* "<=" */
1226    extern void sx_3c3d(environment *env)
1227    {
1228      sx_3e(env); if(env->err) return;
1229      not(env);
1230    }
1231    
1232    /* ">=" */
1233    extern void sx_3e3d(environment *env)
1234    {
1235      sx_3c(env); if(env->err) return;
1236      not(env);
1237  }  }
1238    
1239  /* Return copy of a value */  /* Return copy of a value */
1240  value *copy_val(environment *env, value *old_value){  value *copy_val(environment *env, value *old_value)
1241    {
1242    stackitem *old_item, *new_item, *prev_item;    stackitem *old_item, *new_item, *prev_item;
1243      value *new_value;
1244    
1245    value *new_value=new_val(env);    protect(env, old_value);
1246      new_value= new_val(env);
1247    new_value->type=old_value->type;    protect(env, new_value);
1248      new_value->type= old_value->type;
1249    
1250    switch(old_value->type){    switch(old_value->type){
1251      case tfloat:
1252    case integer:    case integer:
     new_value->content.val=old_value->content.val;  
     break;  
   case string:  
     (char *)(new_value->content.ptr)  
       = strdup((char *)(old_value->content.ptr));  
     break;  
1253    case func:    case func:
1254    case symb:    case symb:
1255      new_value->content.ptr=old_value->content.ptr;      new_value->content= old_value->content;
1256        break;
1257      case string:
1258        (char *)(new_value->content.ptr)=
1259          strdup((char *)(old_value->content.ptr));
1260      break;      break;
1261    case list:    case list:
1262      new_value->content.ptr=NULL;      new_value->content.ptr= NULL;
1263    
1264      prev_item=NULL;      prev_item= NULL;
1265      old_item=(stackitem *)(old_value->content.ptr);      old_item= (stackitem*)(old_value->content.ptr);
1266    
1267      while(old_item != NULL) {   /* While list is not empty */      while(old_item != NULL) {   /* While list is not empty */
1268        new_item= malloc(sizeof(stackitem));        new_item= malloc(sizeof(stackitem));
1269        new_item->item=copy_val(env, old_item->item); /* recurse */        new_item->item= copy_val(env, old_item->item); /* recurse */
1270        new_item->next=NULL;        new_item->next= NULL;
1271        if(prev_item != NULL)     /* If this wasn't the first item */        if(prev_item != NULL)     /* If this wasn't the first item */
1272          prev_item->next=new_item; /* point the previous item to the          prev_item->next= new_item; /* point the previous item to the
1273                                       new item */                                       new item */
1274        else        else
1275          new_value->content.ptr=new_item;          new_value->content.ptr= new_item;
1276        old_item=old_item->next;        old_item= old_item->next;
1277        prev_item=new_item;        prev_item= new_item;
1278      }          }    
1279      break;      break;
1280    }    }
1281    
1282      unprotect(env); unprotect(env);
1283    
1284    return new_value;    return new_value;
1285  }  }
1286    
1287  /* "dup"; duplicates an item on the stack */  /* "dup"; duplicates an item on the stack */
1288  extern void sx_647570(environment *env) {  extern void sx_647570(environment *env)
1289    {
1290    if((env->head)==NULL) {    if((env->head)==NULL) {
1291      printerr("Too Few Arguments");      printerr("Too Few Arguments");
1292      env->err=1;      env->err= 1;
1293      return;      return;
1294    }    }
1295    push_val(env, copy_val(env, env->head->item));    push_val(env, copy_val(env, env->head->item));
1296  }  }
1297    
1298  /* "if", If-Then */  /* "if", If-Then */
1299  extern void sx_6966(environment *env) {  extern void sx_6966(environment *env)
1300    {
1301    int truth;    int truth;
1302    
1303    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1304      printerr("Too Few Arguments");      printerr("Too Few Arguments");
1305      env->err=1;      env->err= 1;
1306      return;      return;
1307    }    }
1308    
# Line 1123  extern void sx_6966(environment *env) { Line 1315  extern void sx_6966(environment *env) {
1315    swap(env);    swap(env);
1316    if(env->err) return;    if(env->err) return;
1317        
1318    truth=env->head->item->content.val;    truth=env->head->item->content.i;
1319    
1320    toss(env);    toss(env);
1321    if(env->err) return;    if(env->err) return;
# Line 1135  extern void sx_6966(environment *env) { Line 1327  extern void sx_6966(environment *env) {
1327  }  }
1328    
1329  /* If-Then-Else */  /* If-Then-Else */
1330  extern void ifelse(environment *env) {  extern void ifelse(environment *env)
1331    {
1332    int truth;    int truth;
1333    
1334    if((env->head)==NULL || env->head->next==NULL    if((env->head)==NULL || env->head->next==NULL
# Line 1155  extern void ifelse(environment *env) { Line 1347  extern void ifelse(environment *env) {
1347    rot(env);    rot(env);
1348    if(env->err) return;    if(env->err) return;
1349        
1350    truth=env->head->item->content.val;    truth=env->head->item->content.i;
1351    
1352    toss(env);    toss(env);
1353    if(env->err) return;    if(env->err) return;
# Line 1171  extern void ifelse(environment *env) { Line 1363  extern void ifelse(environment *env) {
1363  }  }
1364    
1365  /* "while" */  /* "while" */
1366  extern void sx_7768696c65(environment *env) {  extern void sx_7768696c65(environment *env)
1367    {
1368    int truth;    int truth;
1369    value *loop, *test;    value *loop, *test;
1370    
# Line 1183  extern void sx_7768696c65(environment *e Line 1375  extern void sx_7768696c65(environment *e
1375    }    }
1376    
1377    loop= env->head->item;    loop= env->head->item;
1378      protect(env, loop);
1379    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1380    
1381    test= env->head->item;    test= env->head->item;
1382      protect(env, test);
1383    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1384    
1385    do {    do {
# Line 1194  extern void sx_7768696c65(environment *e Line 1388  extern void sx_7768696c65(environment *e
1388            
1389      if(env->head->item->type != integer) {      if(env->head->item->type != integer) {
1390        printerr("Bad Argument Type");        printerr("Bad Argument Type");
1391        env->err=2;        env->err= 2;
1392        return;        return;
1393      }      }
1394            
1395      truth= env->head->item->content.val;      truth= env->head->item->content.i;
1396      toss(env); if(env->err) return;      toss(env); if(env->err) return;
1397            
1398      if(truth) {      if(truth) {
# Line 1209  extern void sx_7768696c65(environment *e Line 1403  extern void sx_7768696c65(environment *e
1403      }      }
1404        
1405    } while(truth);    } while(truth);
1406    
1407      unprotect(env); unprotect(env);
1408  }  }
1409    
1410  /* "for"; For-loop */  
1411  extern void sx_666f72(environment *env) {  /* "for"; for-loop */
1412      extern void sx_666f72(environment *env)
1413    {
1414      value *loop;
1415      int foo1, foo2;
1416    
1417      if(env->head==NULL || env->head->next==NULL
1418         || env->head->next->next==NULL) {
1419        printerr("Too Few Arguments");
1420        env->err= 1;
1421        return;
1422      }
1423    
1424      if(env->head->next->item->type!=integer
1425         || env->head->next->next->item->type!=integer) {
1426        printerr("Bad Argument Type");
1427        env->err= 2;
1428        return;
1429      }
1430    
1431      loop= env->head->item;
1432      protect(env, loop);
1433      toss(env); if(env->err) return;
1434    
1435      foo2= env->head->item->content.i;
1436      toss(env); if(env->err) return;
1437    
1438      foo1= env->head->item->content.i;
1439      toss(env); if(env->err) return;
1440    
1441      if(foo1<=foo2) {
1442        while(foo1<=foo2) {
1443          push_int(env, foo1);
1444          push_val(env, loop);
1445          eval(env); if(env->err) return;
1446          foo1++;
1447        }
1448      } else {
1449        while(foo1>=foo2) {
1450          push_int(env, foo1);
1451          push_val(env, loop);
1452          eval(env); if(env->err) return;
1453          foo1--;
1454        }
1455      }
1456      unprotect(env);
1457    }
1458    
1459    /* Variant of for-loop */
1460    extern void foreach(environment *env)
1461    {  
1462    value *loop, *foo;    value *loop, *foo;
1463    stackitem *iterator;    stackitem *iterator;
1464        
1465    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1466      printerr("Too Few Arguments");      printerr("Too Few Arguments");
1467      env->err=1;      env->err= 1;
1468      return;      return;
1469    }    }
1470    
1471    if(env->head->next->item->type != list) {    if(env->head->next->item->type != list) {
1472      printerr("Bad Argument Type");      printerr("Bad Argument Type");
1473      env->err=2;      env->err= 2;
1474      return;      return;
1475    }    }
1476    
1477    loop= env->head->item;    loop= env->head->item;
1478      protect(env, loop);
1479    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1480    
1481    foo= env->head->item;    foo= env->head->item;
1482      protect(env, foo);
1483    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1484    
1485    iterator= foo->content.ptr;    iterator= foo->content.ptr;
# Line 1243  extern void sx_666f72(environment *env) Line 1490  extern void sx_666f72(environment *env)
1490      eval(env); if(env->err) return;      eval(env); if(env->err) return;
1491      iterator= iterator->next;      iterator= iterator->next;
1492    }    }
1493      unprotect(env); unprotect(env);
1494  }  }
1495    
1496  /* "to" */  /* "to" */
1497  extern void to(environment *env) {  extern void to(environment *env)
1498    int i, start, ending;  {
1499    stackitem *temp_head;    int ending, start, i;
1500    value *temp_val;    stackitem *iterator, *temp;
1501        value *pack;
1502    
1503    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
1504      printerr("Too Few Arguments");      printerr("Too Few Arguments");
1505      env->err=1;      env->err=1;
# Line 1264  extern void to(environment *env) { Line 1513  extern void to(environment *env) {
1513      return;      return;
1514    }    }
1515    
1516    ending= env->head->item->content.val;    ending= env->head->item->content.i;
1517    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1518    start= env->head->item->content.val;    start= env->head->item->content.i;
1519    toss(env); if(env->err) return;    toss(env); if(env->err) return;
1520    
1521    temp_head= env->head;    push_sym(env, "[");
   env->head= NULL;  
1522    
1523    if(ending>=start) {    if(ending>=start) {
1524      for(i= ending; i>=start; i--)      for(i= ending; i>=start; i--)
# Line 1280  extern void to(environment *env) { Line 1528  extern void to(environment *env) {
1528        push_int(env, i);        push_int(env, i);
1529    }    }
1530    
1531    temp_val= new_val(env);    iterator= env->head;
1532    temp_val->content.ptr= env->head;    pack= new_val(env);
1533    temp_val->type= list;    protect(env, pack);
1534    env->head= temp_head;  
1535    push_val(env, temp_val);    if(iterator==NULL
1536         || (iterator->item->type==symb
1537         && ((symbol*)(iterator->item->content.ptr))->id[0]=='[')) {
1538        temp= NULL;
1539        toss(env);
1540      } else {
1541        /* Search for first delimiter */
1542        while(iterator->next!=NULL
1543              && (iterator->next->item->type!=symb
1544              || ((symbol*)(iterator->next->item->content.ptr))->id[0]!='['))
1545          iterator= iterator->next;
1546        
1547        /* Extract list */
1548        temp= env->head;
1549        env->head= iterator->next;
1550        iterator->next= NULL;
1551    
1552        pack->type= list;
1553        pack->content.ptr= temp;
1554        
1555        if(env->head!=NULL)
1556          toss(env);
1557      }
1558    
1559      /* Push list */
1560    
1561      push_val(env, pack);
1562    
1563      unprotect(env);
1564  }  }
1565    
1566  /* Read a string */  /* Read a string */
1567  extern void readline(environment *env) {  extern void readline(environment *env)
1568    {
1569    char in_string[101];    char in_string[101];
1570    
1571    if(fgets(in_string, 100, env->inputstream)==NULL)    if(fgets(in_string, 100, env->inputstream)==NULL)
# Line 1298  extern void readline(environment *env) { Line 1575  extern void readline(environment *env) {
1575  }  }
1576    
1577  /* "read"; Read a value and place on stack */  /* "read"; Read a value and place on stack */
1578  extern void sx_72656164(environment *env) {  extern void sx_72656164(environment *env)
1579    {
1580    const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%n";    const char symbform[]= "%[a-zA-Z0-9!$%*+./:<=>?@^_~-]%n";
1581    const char strform[]= "\"%[^\"]\"%n";    const char strform[]= "\"%[^\"]\"%n";
1582    const char intform[]= "%i%n";    const char intform[]= "%i%n";
1583      const char fltform[]= "%f%n";
1584    const char blankform[]= "%*[ \t]%n";    const char blankform[]= "%*[ \t]%n";
1585    const char ebrackform[]= "%*1[]]%n";    const char ebrackform[]= "]%n";
1586    const char semicform[]= "%*1[;]%n";    const char semicform[]= ";%n";
1587    const char bbrackform[]= "%*1[[]%n";    const char bbrackform[]= "[%n";
1588    
1589    int itemp, readlength= -1;    int itemp, readlength= -1;
1590      int count= -1;
1591      float ftemp;
1592    static int depth= 0;    static int depth= 0;
1593    char *match;    char *match, *ctemp;
1594    size_t inlength;    size_t inlength;
1595    
1596    if(env->in_string==NULL) {    if(env->in_string==NULL) {
# Line 1332  extern void sx_72656164(environment *env Line 1613  extern void sx_72656164(environment *env
1613    inlength= strlen(env->in_string)+1;    inlength= strlen(env->in_string)+1;
1614    match= malloc(inlength);    match= malloc(inlength);
1615    
1616    if(sscanf(env->in_string, blankform, &readlength)!=EOF    if(sscanf(env->in_string, blankform, &readlength) != EOF
1617       && readlength != -1) {       && readlength != -1) {
1618      ;      ;
1619    } else if(sscanf(env->in_string, intform, &itemp, &readlength) != EOF    } else if(sscanf(env->in_string, fltform, &ftemp, &readlength) != EOF
1620              && readlength != -1) {              && readlength != -1) {
1621      push_int(env, itemp);      if(sscanf(env->in_string, intform, &itemp, &count) != EOF
1622           && count==readlength) {
1623          push_int(env, itemp);
1624        } else {
1625          push_float(env, ftemp);
1626        }
1627    } else if(sscanf(env->in_string, strform, match, &readlength) != EOF    } else if(sscanf(env->in_string, strform, match, &readlength) != EOF
1628              && readlength != -1) {              && readlength != -1) {
1629      push_cstring(env, match);      push_cstring(env, match);
# Line 1359  extern void sx_72656164(environment *env Line 1645  extern void sx_72656164(environment *env
1645      free(env->free_string);      free(env->free_string);
1646      env->in_string = env->free_string = NULL;      env->in_string = env->free_string = NULL;
1647    }    }
1648    if ( env->in_string != NULL) {    if (env->in_string != NULL) {
1649      env->in_string += readlength;      env->in_string += readlength;
1650    }    }
1651    
# Line 1368  extern void sx_72656164(environment *env Line 1654  extern void sx_72656164(environment *env
1654    if(depth)    if(depth)
1655      return sx_72656164(env);      return sx_72656164(env);
1656  }  }
1657    
1658    extern void beep(environment *env)
1659    {
1660      int freq, dur, period, ticks;
1661    
1662      if((env->head)==NULL || env->head->next==NULL) {
1663        printerr("Too Few Arguments");
1664        env->err=1;
1665        return;
1666      }
1667    
1668      if(env->head->item->type!=integer
1669         || env->head->next->item->type!=integer) {
1670        printerr("Bad Argument Type");
1671        env->err=2;
1672        return;
1673      }
1674    
1675      dur=env->head->item->content.i;
1676      toss(env);
1677      freq=env->head->item->content.i;
1678      toss(env);
1679    
1680      period=1193180/freq;          /* convert freq from Hz to period
1681                                       length */
1682      ticks=dur*.001193180;         /* convert duration from µseconds to
1683                                       timer ticks */
1684    
1685    /*    ticks=dur/1000; */
1686    
1687      /*  if (ioctl(STDOUT_FILENO, KDMKTONE, (125<<16) + 0x637)==0) */
1688      switch (ioctl(STDOUT_FILENO, KDMKTONE, (ticks<<16) | period)){
1689      case 0:
1690        usleep(dur);
1691        return;
1692      case -1:
1693        perror("beep");
1694        env->err=5;
1695        return;
1696      default:
1697        abort();
1698      }
1699    }
1700    
1701    /* "wait" */
1702    extern void sx_77616974(environment *env)
1703    {
1704      int dur;
1705    
1706      if((env->head)==NULL) {
1707        printerr("Too Few Arguments");
1708        env->err=1;
1709        return;
1710      }
1711    
1712      if(env->head->item->type!=integer) {
1713        printerr("Bad Argument Type");
1714        env->err=2;
1715        return;
1716      }
1717    
1718      dur=env->head->item->content.i;
1719      toss(env);
1720    
1721      usleep(dur);
1722    }
1723    
1724    extern void copying(environment *env)
1725    {
1726      printf("GNU GENERAL PUBLIC LICENSE\n\
1727                           Version 2, June 1991\n\
1728    \n\
1729     Copyright (C) 1989, 1991 Free Software Foundation, Inc.\n\
1730         59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\n\
1731     Everyone is permitted to copy and distribute verbatim copies\n\
1732     of this license document, but changing it is not allowed.\n\
1733    \n\
1734                                Preamble\n\
1735    \n\
1736      The licenses for most software are designed to take away your\n\
1737    freedom to share and change it.  By contrast, the GNU General Public\n\
1738    License is intended to guarantee your freedom to share and change free\n\
1739    software--to make sure the software is free for all its users.  This\n\
1740    General Public License applies to most of the Free Software\n\
1741    Foundation's software and to any other program whose authors commit to\n\
1742    using it.  (Some other Free Software Foundation software is covered by\n\
1743    the GNU Library General Public License instead.)  You can apply it to\n\
1744    your programs, too.\n\
1745    \n\
1746      When we speak of free software, we are referring to freedom, not\n\
1747    price.  Our General Public Licenses are designed to make sure that you\n\
1748    have the freedom to distribute copies of free software (and charge for\n\
1749    this service if you wish), that you receive source code or can get it\n\
1750    if you want it, that you can change the software or use pieces of it\n\
1751    in new free programs; and that you know you can do these things.\n\
1752    \n\
1753      To protect your rights, we need to make restrictions that forbid\n\
1754    anyone to deny you these rights or to ask you to surrender the rights.\n\
1755    These restrictions translate to certain responsibilities for you if you\n\
1756    distribute copies of the software, or if you modify it.\n\
1757    \n\
1758      For example, if you distribute copies of such a program, whether\n\
1759    gratis or for a fee, you must give the recipients all the rights that\n\
1760    you have.  You must make sure that they, too, receive or can get the\n\
1761    source code.  And you must show them these terms so they know their\n\
1762    rights.\n\
1763    \n\
1764      We protect your rights with two steps: (1) copyright the software, and\n\
1765    (2) offer you this license which gives you legal permission to copy,\n\
1766    distribute and/or modify the software.\n\
1767    \n\
1768      Also, for each author's protection and ours, we want to make certain\n\
1769    that everyone understands that there is no warranty for this free\n\
1770    software.  If the software is modified by someone else and passed on, we\n\
1771    want its recipients to know that what they have is not the original, so\n\
1772    that any problems introduced by others will not reflect on the original\n\
1773    authors' reputations.\n\
1774    \n\
1775      Finally, any free program is threatened constantly by software\n\
1776    patents.  We wish to avoid the danger that redistributors of a free\n\
1777    program will individually obtain patent licenses, in effect making the\n\
1778    program proprietary.  To prevent this, we have made it clear that any\n\
1779    patent must be licensed for everyone's free use or not licensed at all.\n\
1780    \n\
1781      The precise terms and conditions for copying, distribution and\n\
1782    modification follow.\n\
1783    \n\
1784                        GNU GENERAL PUBLIC LICENSE\n\
1785       TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION\n\
1786    \n\
1787      0. This License applies to any program or other work which contains\n\
1788    a notice placed by the copyright holder saying it may be distributed\n\
1789    under the terms of this General Public License.  The \"Program\", below,\n\
1790    refers to any such program or work, and a \"work based on the Program\"\n\
1791    means either the Program or any derivative work under copyright law:\n\
1792    that is to say, a work containing the Program or a portion of it,\n\
1793    either verbatim or with modifications and/or translated into another\n\
1794    language.  (Hereinafter, translation is included without limitation in\n\
1795    the term \"modification\".)  Each licensee is addressed as \"you\".\n\
1796    \n\
1797    Activities other than copying, distribution and modification are not\n\
1798    covered by this License; they are outside its scope.  The act of\n\
1799    running the Program is not restricted, and the output from the Program\n\
1800    is covered only if its contents constitute a work based on the\n\
1801    Program (independent of having been made by running the Program).\n\
1802    Whether that is true depends on what the Program does.\n\
1803    \n\
1804      1. You may copy and distribute verbatim copies of the Program's\n\
1805    source code as you receive it, in any medium, provided that you\n\
1806    conspicuously and appropriately publish on each copy an appropriate\n\
1807    copyright notice and disclaimer of warranty; keep intact all the\n\
1808    notices that refer to this License and to the absence of any warranty;\n\
1809    and give any other recipients of the Program a copy of this License\n\
1810    along with the Program.\n\
1811    \n\
1812    You may charge a fee for the physical act of transferring a copy, and\n\
1813    you may at your option offer warranty protection in exchange for a fee.\n\
1814    \n\
1815      2. You may modify your copy or copies of the Program or any portion\n\
1816    of it, thus forming a work based on the Program, and copy and\n\
1817    distribute such modifications or work under the terms of Section 1\n\
1818    above, provided that you also meet all of these conditions:\n\
1819    \n\
1820        a) You must cause the modified files to carry prominent notices\n\
1821        stating that you changed the files and the date of any change.\n\
1822    \n\
1823        b) You must cause any work that you distribute or publish, that in\n\
1824        whole or in part contains or is derived from the Program or any\n\
1825        part thereof, to be licensed as a whole at no charge to all third\n\
1826        parties under the terms of this License.\n\
1827    \n\
1828        c) If the modified program normally reads commands interactively\n\
1829        when run, you must cause it, when started running for such\n\
1830        interactive use in the most ordinary way, to print or display an\n\
1831        announcement including an appropriate copyright notice and a\n\
1832        notice that there is no warranty (or else, saying that you provide\n\
1833        a warranty) and that users may redistribute the program under\n\
1834        these conditions, and telling the user how to view a copy of this\n\
1835        License.  (Exception: if the Program itself is interactive but\n\
1836        does not normally print such an announcement, your work based on\n\
1837        the Program is not required to print an announcement.)\n\
1838    \n\
1839    These requirements apply to the modified work as a whole.  If\n\
1840    identifiable sections of that work are not derived from the Program,\n\
1841    and can be reasonably considered independent and separate works in\n\
1842    themselves, then this License, and its terms, do not apply to those\n\
1843    sections when you distribute them as separate works.  But when you\n\
1844    distribute the same sections as part of a whole which is a work based\n\
1845    on the Program, the distribution of the whole must be on the terms of\n\
1846    this License, whose permissions for other licensees extend to the\n\
1847    entire whole, and thus to each and every part regardless of who wrote it.\n\
1848    \n\
1849    Thus, it is not the intent of this section to claim rights or contest\n\
1850    your rights to work written entirely by you; rather, the intent is to\n\
1851    exercise the right to control the distribution of derivative or\n\
1852    collective works based on the Program.\n\
1853    \n\
1854    In addition, mere aggregation of another work not based on the Program\n\
1855    with the Program (or with a work based on the Program) on a volume of\n\
1856    a storage or distribution medium does not bring the other work under\n\
1857    the scope of this License.\n\
1858    \n\
1859      3. You may copy and distribute the Program (or a work based on it,\n\
1860    under Section 2) in object code or executable form under the terms of\n\
1861    Sections 1 and 2 above provided that you also do one of the following:\n\
1862    \n\
1863        a) Accompany it with the complete corresponding machine-readable\n\
1864        source code, which must be distributed under the terms of Sections\n\
1865        1 and 2 above on a medium customarily used for software interchange; or,\n\
1866    \n\
1867        b) Accompany it with a written offer, valid for at least three\n\
1868        years, to give any third party, for a charge no more than your\n\
1869        cost of physically performing source distribution, a complete\n\
1870        machine-readable copy of the corresponding source code, to be\n\
1871        distributed under the terms of Sections 1 and 2 above on a medium\n\
1872        customarily used for software interchange; or,\n\
1873    \n\
1874        c) Accompany it with the information you received as to the offer\n\
1875        to distribute corresponding source code.  (This alternative is\n\
1876        allowed only for noncommercial distribution and only if you\n\
1877        received the program in object code or executable form with such\n\
1878        an offer, in accord with Subsection b above.)\n\
1879    \n\
1880    The source code for a work means the preferred form of the work for\n\
1881    making modifications to it.  For an executable work, complete source\n\
1882    code means all the source code for all modules it contains, plus any\n\
1883    associated interface definition files, plus the scripts used to\n\
1884    control compilation and installation of the executable.  However, as a\n\
1885    special exception, the source code distributed need not include\n\
1886    anything that is normally distributed (in either source or binary\n\
1887    form) with the major components (compiler, kernel, and so on) of the\n\
1888    operating system on which the executable runs, unless that component\n\
1889    itself accompanies the executable.\n\
1890    \n\
1891    If distribution of executable or object code is made by offering\n\
1892    access to copy from a designated place, then offering equivalent\n\
1893    access to copy the source code from the same place counts as\n\
1894    distribution of the source code, even though third parties are not\n\
1895    compelled to copy the source along with the object code.\n\
1896    \n\
1897      4. You may not copy, modify, sublicense, or distribute the Program\n\
1898    except as expressly provided under this License.  Any attempt\n\
1899    otherwise to copy, modify, sublicense or distribute the Program is\n\
1900    void, and will automatically terminate your rights under this License.\n\
1901    However, parties who have received copies, or rights, from you under\n\
1902    this License will not have their licenses terminated so long as such\n\
1903    parties remain in full compliance.\n\
1904    \n\
1905      5. You are not required to accept this License, since you have not\n\
1906    signed it.  However, nothing else grants you permission to modify or\n\
1907    distribute the Program or its derivative works.  These actions are\n\
1908    prohibited by law if you do not accept this License.  Therefore, by\n\
1909    modifying or distributing the Program (or any work based on the\n\
1910    Program), you indicate your acceptance of this License to do so, and\n\
1911    all its terms and conditions for copying, distributing or modifying\n\
1912    the Program or works based on it.\n\
1913    \n\
1914      6. Each time you redistribute the Program (or any work based on the\n\
1915    Program), the recipient automatically receives a license from the\n\
1916    original licensor to copy, distribute or modify the Program subject to\n\
1917    these terms and conditions.  You may not impose any further\n\
1918    restrictions on the recipients' exercise of the rights granted herein.\n\
1919    You are not responsible for enforcing compliance by third parties to\n\
1920    this License.\n\
1921    \n\
1922      7. If, as a consequence of a court judgment or allegation of patent\n\
1923    infringement or for any other reason (not limited to patent issues),\n\
1924    conditions are imposed on you (whether by court order, agreement or\n\
1925    otherwise) that contradict the conditions of this License, they do not\n\
1926    excuse you from the conditions of this License.  If you cannot\n\
1927    distribute so as to satisfy simultaneously your obligations under this\n\
1928    License and any other pertinent obligations, then as a consequence you\n\
1929    may not distribute the Program at all.  For example, if a patent\n\
1930    license would not permit royalty-free redistribution of the Program by\n\
1931    all those who receive copies directly or indirectly through you, then\n\
1932    the only way you could satisfy both it and this License would be to\n\
1933    refrain entirely from distribution of the Program.\n\
1934    \n\
1935    If any portion of this section is held invalid or unenforceable under\n\
1936    any particular circumstance, the balance of the section is intended to\n\
1937    apply and the section as a whole is intended to apply in other\n\
1938    circumstances.\n\
1939    \n\
1940    It is not the purpose of this section to induce you to infringe any\n\
1941    patents or other property right claims or to contest validity of any\n\
1942    such claims; this section has the sole purpose of protecting the\n\
1943    integrity of the free software distribution system, which is\n\
1944    implemented by public license practices.  Many people have made\n\
1945    generous contributions to the wide range of software distributed\n\
1946    through that system in reliance on consistent application of that\n\
1947    system; it is up to the author/donor to decide if he or she is willing\n\
1948    to distribute software through any other system and a licensee cannot\n\
1949    impose that choice.\n\
1950    \n\
1951    This section is intended to make thoroughly clear what is believed to\n\
1952    be a consequence of the rest of this License.\n\
1953    \n\
1954      8. If the distribution and/or use of the Program is restricted in\n\
1955    certain countries either by patents or by copyrighted interfaces, the\n\
1956    original copyright holder who places the Program under this License\n\
1957    may add an explicit geographical distribution limitation excluding\n\
1958    those countries, so that distribution is permitted only in or among\n\
1959    countries not thus excluded.  In such case, this License incorporates\n\
1960    the limitation as if written in the body of this License.\n\
1961    \n\
1962      9. The Free Software Foundation may publish revised and/or new versions\n\
1963    of the General Public License from time to time.  Such new versions will\n\
1964    be similar in spirit to the present version, but may differ in detail to\n\
1965    address new problems or concerns.\n\
1966    \n\
1967    Each version is given a distinguishing version number.  If the Program\n\
1968    specifies a version number of this License which applies to it and \"any\n\
1969    later version\", you have the option of following the terms and conditions\n\
1970    either of that version or of any later version published by the Free\n\
1971    Software Foundation.  If the Program does not specify a version number of\n\
1972    this License, you may choose any version ever published by the Free Software\n\
1973    Foundation.\n\
1974    \n\
1975      10. If you wish to incorporate parts of the Program into other free\n\
1976    programs whose distribution conditions are different, write to the author\n\
1977    to ask for permission.  For software which is copyrighted by the Free\n\
1978    Software Foundation, write to the Free Software Foundation; we sometimes\n\
1979    make exceptions for this.  Our decision will be guided by the two goals\n\
1980    of preserving the free status of all derivatives of our free software and\n\
1981    of promoting the sharing and reuse of software generally.\n");
1982    }
1983    
1984    extern void warranty(environment *env)
1985    {
1986      printf("                          NO WARRANTY\n\
1987    \n\
1988      11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY\n\
1989    FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN\n\
1990    OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES\n\
1991    PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED\n\
1992    OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF\n\
1993    MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS\n\
1994    TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE\n\
1995    PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,\n\
1996    REPAIR OR CORRECTION.\n\
1997    \n\
1998      12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\n\
1999    WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR\n\
2000    REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,\n\
2001    INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING\n\
2002    OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED\n\
2003    TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY\n\
2004    YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER\n\
2005    PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE\n\
2006    POSSIBILITY OF SUCH DAMAGES.\n");
2007    }
2008    
2009    /* "*" */
2010    extern void sx_2a(environment *env)
2011    {
2012      int a, b;
2013      float fa, fb;
2014    
2015      if((env->head)==NULL || env->head->next==NULL) {
2016        printerr("Too Few Arguments");
2017        env->err=1;
2018        return;
2019      }
2020      
2021      if(env->head->item->type==integer
2022         && env->head->next->item->type==integer) {
2023        a=env->head->item->content.i;
2024        toss(env); if(env->err) return;
2025        b=env->head->item->content.i;
2026        toss(env); if(env->err) return;
2027        push_int(env, b*a);
2028    
2029        return;
2030      }
2031    
2032      if(env->head->item->type==tfloat
2033         && env->head->next->item->type==tfloat) {
2034        fa= env->head->item->content.f;
2035        toss(env); if(env->err) return;
2036        fb= env->head->item->content.f;
2037        toss(env); if(env->err) return;
2038        push_float(env, fb*fa);
2039        
2040        return;
2041      }
2042    
2043      if(env->head->item->type==tfloat
2044         && env->head->next->item->type==integer) {
2045        fa= env->head->item->content.f;
2046        toss(env); if(env->err) return;
2047        b= env->head->item->content.i;
2048        toss(env); if(env->err) return;
2049        push_float(env, b*fa);
2050        
2051        return;
2052      }
2053    
2054      if(env->head->item->type==integer
2055         && env->head->next->item->type==tfloat) {
2056        a= env->head->item->content.i;
2057        toss(env); if(env->err) return;
2058        fb= env->head->item->content.f;
2059        toss(env); if(env->err) return;
2060        push_float(env, fb*a);
2061    
2062        return;
2063      }
2064    
2065      printerr("Bad Argument Type");
2066      env->err=2;
2067    }
2068    
2069    /* "/" */
2070    extern void sx_2f(environment *env)
2071    {
2072      int a, b;
2073      float fa, fb;
2074    
2075      if((env->head)==NULL || env->head->next==NULL) {
2076        printerr("Too Few Arguments");
2077        env->err=1;
2078        return;
2079      }
2080      
2081      if(env->head->item->type==integer
2082         && env->head->next->item->type==integer) {
2083        a=env->head->item->content.i;
2084        toss(env); if(env->err) return;
2085        b=env->head->item->content.i;
2086        toss(env); if(env->err) return;
2087        push_float(env, b/a);
2088    
2089        return;
2090      }
2091    
2092      if(env->head->item->type==tfloat
2093         && env->head->next->item->type==tfloat) {
2094        fa= env->head->item->content.f;
2095        toss(env); if(env->err) return;
2096        fb= env->head->item->content.f;
2097        toss(env); if(env->err) return;
2098        push_float(env, fb/fa);
2099        
2100        return;
2101      }
2102    
2103      if(env->head->item->type==tfloat
2104         && env->head->next->item->type==integer) {
2105        fa= env->head->item->content.f;
2106        toss(env); if(env->err) return;
2107        b= env->head->item->content.i;
2108        toss(env); if(env->err) return;
2109        push_float(env, b/fa);
2110        
2111        return;
2112      }
2113    
2114      if(env->head->item->type==integer
2115         && env->head->next->item->type==tfloat) {
2116        a= env->head->item->content.i;
2117        toss(env); if(env->err) return;
2118        fb= env->head->item->content.f;
2119        toss(env); if(env->err) return;
2120        push_float(env, fb/a);
2121    
2122        return;
2123      }
2124    
2125      printerr("Bad Argument Type");
2126      env->err=2;
2127    }
2128    
2129    /* "mod" */
2130    extern void mod(environment *env)
2131    {
2132      int a, b;
2133    
2134      if((env->head)==NULL || env->head->next==NULL) {
2135        printerr("Too Few Arguments");
2136        env->err= 1;
2137        return;
2138      }
2139      
2140      if(env->head->item->type==integer
2141         && env->head->next->item->type==integer) {
2142        a= env->head->item->content.i;
2143        toss(env); if(env->err) return;
2144        b= env->head->item->content.i;
2145        toss(env); if(env->err) return;
2146        push_int(env, b%a);
2147    
2148        return;
2149      }
2150    
2151      printerr("Bad Argument Type");
2152      env->err=2;
2153    }
2154    
2155    /* "div" */
2156    extern void sx_646976(environment *env)
2157    {
2158      int a, b;
2159      
2160      if((env->head)==NULL || env->head->next==NULL) {
2161        printerr("Too Few Arguments");
2162        env->err= 1;
2163        return;
2164      }
2165    
2166      if(env->head->item->type==integer
2167         && env->head->next->item->type==integer) {
2168        a= env->head->item->content.i;
2169        toss(env); if(env->err) return;
2170        b= env->head->item->content.i;
2171        toss(env); if(env->err) return;
2172        push_int(env, (int)b/a);
2173    
2174        return;
2175      }
2176    
2177      printerr("Bad Argument Type");
2178      env->err= 2;
2179    }

Legend:
Removed from v.1.87  
changed lines
  Added in v.1.95

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26