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

Diff of /stack/stack.c

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

revision 1.35 by teddy, Wed Feb 6 00:30:14 2002 UTC revision 1.53 by teddy, Thu Feb 7 23:56:54 2002 UTC
# Line 1  Line 1 
1  /* printf */  /* printf, sscanf, fgets, fprintf */
2  #include <stdio.h>  #include <stdio.h>
3  /* EXIT_SUCCESS */  /* exit, EXIT_SUCCESS, malloc, free */
4  #include <stdlib.h>  #include <stdlib.h>
5  /* NULL */  /* NULL */
6  #include <stddef.h>  #include <stddef.h>
7  /* dlopen, dlsym, dlerror */  /* dlopen, dlsym, dlerror */
8  #include <dlfcn.h>  #include <dlfcn.h>
9  /* assert */  /* strcmp, strcpy, strlen, strcat, strdup */
10  #include <assert.h>  #include <string.h>
11    
12  #define HASHTBLSIZE 65536  #define HASHTBLSIZE 65536
13    
# Line 57  typedef struct { Line 57  typedef struct {
57    stackitem *head;              /* Head of the stack */    stackitem *head;              /* Head of the stack */
58    hashtbl symbols;              /* Hash table of all variable bindings */    hashtbl symbols;              /* Hash table of all variable bindings */
59    int err;                      /* Error flag */    int err;                      /* Error flag */
60      int non_eval_flag;
61  } environment;  } environment;
62    
63  /* A type for pointers to external functions */  /* A type for pointers to external functions */
# Line 66  typedef void (*funcp)(environment *); /* Line 67  typedef void (*funcp)(environment *); /*
67  /* Initialize a newly created environment */  /* Initialize a newly created environment */
68  void init_env(environment *env)  void init_env(environment *env)
69  {  {
70    long i;    int i;
71    
72    env->err=0;    env->err= 0;
73      env->non_eval_flag= 0;
74    for(i= 0; i<HASHTBLSIZE; i++)    for(i= 0; i<HASHTBLSIZE; i++)
75      env->symbols[i]= NULL;      env->symbols[i]= NULL;
76  }  }
77    
78    void printerr(const char* in_string) {
79      fprintf(stderr, "Err: %s\n", in_string);
80    }
81    
82    /* Throw away a value */
83    void free_val(value *val){
84      stackitem *item, *temp;
85    
86      val->refcount--;              /* Decrease the reference count */
87      if(val->refcount == 0){
88        switch (val->type){         /* and free the contents if necessary */
89        case string:
90          free(val->content.ptr);
91          break;
92        case list:                  /* lists needs to be freed recursively */
93          item=val->content.ptr;
94          while(item != NULL) {     /* for all stack items */
95            free_val(item->item);   /* free the value */
96            temp=item->next;        /* save next ptr */
97            free(item);             /* free the stackitem */
98            item=temp;              /* go to next stackitem */
99          }
100          free(val);                /* Free the actual list value */
101          break;
102        default:
103          break;
104        }
105      }
106    }
107    
108    /* Discard the top element of the stack. */
109    extern void toss(environment *env)
110    {
111      stackitem *temp= env->head;
112    
113      if((env->head)==NULL) {
114        printerr("Too Few Arguments");
115        env->err=1;
116        return;
117      }
118      
119      free_val(env->head->item);    /* Free the value */
120      env->head= env->head->next;   /* Remove the top stack item */
121      free(temp);                   /* Free the old top stack item */
122    }
123    
124  /* 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. */
125  symbol **hash(hashtbl in_hashtbl, const char *in_string)  symbol **hash(hashtbl in_hashtbl, const char *in_string)
126  {  {
127    long i= 0;    int i= 0;
128    unsigned long out_hash= 0;    unsigned int out_hash= 0;
129    char key= '\0';    char key= '\0';
130    symbol **position;    symbol **position;
131        
# Line 147  void push_cstring(stackitem **stack_head Line 195  void push_cstring(stackitem **stack_head
195    push(stack_head, new_item);    push(stack_head, new_item);
196  }  }
197    
198    /* Mangle a symbol name to a valid C identifier name */
199    char *mangle_str(const char *old_string){
200      char validchars[]
201        ="0123456789abcdef";
202      char *new_string, *current;
203    
204      new_string=malloc((strlen(old_string)*2)+4);
205      strcpy(new_string, "sx_");    /* Stack eXternal */
206      current=new_string+3;
207      while(old_string[0] != '\0'){
208        current[0]=validchars[(unsigned char)(old_string[0])/16];
209        current[1]=validchars[(unsigned char)(old_string[0])%16];
210        current+=2;
211        old_string++;
212      }
213      current[0]='\0';
214    
215      return new_string;            /* The caller must free() it */
216    }
217    
218    extern void mangle(environment *env){
219      value *new_value;
220      char *new_string;
221    
222      if((env->head)==NULL) {
223        printerr("Too Few Arguments");
224        env->err=1;
225        return;
226      }
227    
228      if(env->head->item->type!=string) {
229        printerr("Bad Argument Type");
230        env->err=2;
231        return;
232      }
233    
234      new_string= mangle_str((const char *)(env->head->item->content.ptr));
235    
236      toss(env);
237      if(env->err) return;
238    
239      new_value= malloc(sizeof(value));
240      new_value->content.ptr= new_string;
241      new_value->type= string;
242      new_value->refcount=1;
243    
244      push_val(&(env->head), new_value);
245    }
246    
247  /* Push a symbol onto the stack. */  /* Push a symbol onto the stack. */
248  void push_sym(environment *env, const char *in_string)  void push_sym(environment *env, const char *in_string)
249  {  {
# Line 161  void push_sym(environment *env, const ch Line 258  void push_sym(environment *env, const ch
258    void *funcptr;                /* A function pointer */    void *funcptr;                /* A function pointer */
259    
260    static void *handle= NULL;    /* Dynamic linker handle */    static void *handle= NULL;    /* Dynamic linker handle */
261      const char *dlerr;            /* Dynamic linker error */
262      char *mangled;                /* Mangled function name */
263    
264    /* Create a new stack item containing a new value */    /* Create a new stack item containing a new value */
265    new_item= malloc(sizeof(stackitem));    new_item= malloc(sizeof(stackitem));
# Line 193  void push_sym(environment *env, const ch Line 292  void push_sym(environment *env, const ch
292        handle= dlopen(NULL, RTLD_LAZY);        handle= dlopen(NULL, RTLD_LAZY);
293    
294      funcptr= dlsym(handle, in_string); /* Get function pointer */      funcptr= dlsym(handle, in_string); /* Get function pointer */
295      if(dlerror()==NULL) {       /* If a function was found */      dlerr=dlerror();
296        if(dlerr != NULL) {         /* If no function was found */
297          mangled=mangle_str(in_string);
298          funcptr= dlsym(handle, mangled); /* try mangling it */
299          free(mangled);
300          dlerr=dlerror();
301        }
302        if(dlerr==NULL) {           /* If a function was found */
303        new_fvalue= malloc(sizeof(value)); /* Create a new value */        new_fvalue= malloc(sizeof(value)); /* Create a new value */
304        new_fvalue->type=func;    /* The new value is a function pointer */        new_fvalue->type=func;    /* The new value is a function pointer */
305        new_fvalue->content.ptr=funcptr; /* Store function pointer */        new_fvalue->content.ptr=funcptr; /* Store function pointer */
# Line 205  void push_sym(environment *env, const ch Line 311  void push_sym(environment *env, const ch
311    push(&(env->head), new_item);    push(&(env->head), new_item);
312  }  }
313    
314  void printerr(const char* in_string) {  /* Print newline. */
315    fprintf(stderr, "Err: %s\n", in_string);  extern void nl()
316  }  {
317      printf("\n");
 /* Throw away a value */  
 void free_val(value *val){  
   stackitem *item, *temp;  
   
   val->refcount--;              /* Decrease the reference count */  
   if(val->refcount == 0){  
     switch (val->type){         /* and free the contents if necessary */  
     case string:  
       free(val->content.ptr);  
     case list:                  /* lists needs to be freed recursively */  
       item=val->content.ptr;  
       while(item != NULL) {     /* for all stack items */  
         free_val(item->item);   /* free the value */  
         temp=item->next;        /* save next ptr */  
         free(item);             /* free the stackitem */  
         item=temp;              /* go to next stackitem */  
       }  
       free(val);                /* Free the actual list value */  
       break;  
     default:  
       break;  
     }  
   }  
318  }  }
319    
320  /* Discard the top element of the stack. */  /* Gets the type of a value */
321  extern void toss(environment *env)  extern void type(environment *env){
322  {    int typenum;
   stackitem *temp= env->head;  
323    
324    if((env->head)==NULL) {    if((env->head)==NULL) {
325      printerr("Stack empty");      printerr("Too Few Arguments");
326      env->err=1;      env->err=1;
327      return;      return;
328    }    }
329        typenum=env->head->item->type;
330    free_val(env->head->item);    /* Free the value */    toss(env);
331    env->head= env->head->next;   /* Remove the top stack item */    switch(typenum){
332    free(temp);                   /* Free the old top stack item */    case integer:
333  }      push_sym(env, "integer");
334        break;
335  /* Print newline. */    case string:
336  extern void nl()      push_sym(env, "string");
337  {      break;
338    printf("\n");    case symb:
339  }      push_sym(env, "symbol");
340        break;
341      case func:
342        push_sym(env, "function");
343        break;
344      case list:
345        push_sym(env, "list");
346        break;
347      default:
348        push_sym(env, "unknown");
349        break;
350      }
351    }    
352    
353  /* Prints the top element of the stack. */  /* Prints the top element of the stack. */
354  void print_h(stackitem *stack_head)  void print_h(stackitem *stack_head)
# Line 267  void print_h(stackitem *stack_head) Line 361  void print_h(stackitem *stack_head)
361      printf("\"%s\"", (char*)stack_head->item->content.ptr);      printf("\"%s\"", (char*)stack_head->item->content.ptr);
362      break;      break;
363    case symb:    case symb:
364      printf("'%s'", ((symbol *)(stack_head->item->content.ptr))->id);      printf("%s", ((symbol *)(stack_head->item->content.ptr))->id);
365      break;      break;
366    case func:    case func:
367      printf("#<function %p>", (funcp)(stack_head->item->content.ptr));      printf("#<function %p>", (funcp)(stack_head->item->content.ptr));
368      break;      break;
369    case list:    case list:
370      printf("#<list %p>", (funcp)(stack_head->item->content.ptr));      /* A list is just a stack, so make stack_head point to it */
371        stack_head=(stackitem *)(stack_head->item->content.ptr);
372        printf("[ ");
373        while(stack_head != NULL) {
374          print_h(stack_head);
375          printf(" ");
376          stack_head=stack_head->next;
377        }
378        printf("]");
379      break;      break;
380    default:    default:
381      printf("#<unknown %p>", (funcp)(stack_head->item->content.ptr));      printf("#<unknown %p>", (stack_head->item->content.ptr));
382      break;      break;
383    }    }
384  }  }
385    
386  extern void print_(environment *env) {  extern void print_(environment *env) {
387    if(env->head==NULL) {    if(env->head==NULL) {
388      printerr("Stack empty");      printerr("Too Few Arguments");
389      env->err=1;      env->err=1;
390      return;      return;
391    }    }
# Line 308  void print_st(stackitem *stack_head, lon Line 410  void print_st(stackitem *stack_head, lon
410    nl();    nl();
411  }  }
412    
   
   
413  /* Prints the stack. */  /* Prints the stack. */
414  extern void printstack(environment *env)  extern void printstack(environment *env)
415  {  {
416    if(env->head == NULL) {    if(env->head == NULL) {
     printerr("Stack empty");  
     env->err=1;  
417      return;      return;
418    }    }
419    print_st(env->head, 1);    print_st(env->head, 1);
# Line 327  extern void swap(environment *env) Line 425  extern void swap(environment *env)
425  {  {
426    stackitem *temp= env->head;    stackitem *temp= env->head;
427        
428    if((env->head)==NULL) {    if(env->head==NULL || env->head->next==NULL) {
429      printerr("Stack empty");      printerr("Too Few Arguments");
     env->err=1;  
     return;  
   }  
   
   if(env->head->next==NULL) {  
     printerr("Not enough arguments");  
430      env->err=1;      env->err=1;
431      return;      return;
432    }    }
# Line 344  extern void swap(environment *env) Line 436  extern void swap(environment *env)
436    env->head->next= temp;    env->head->next= temp;
437  }  }
438    
 stackitem* copy(stackitem* in_item)  
 {  
   stackitem *out_item= malloc(sizeof(stackitem));  
   
   memcpy(out_item, in_item, sizeof(stackitem));  
   out_item->next= NULL;  
   
   return out_item;  
 }  
   
439  /* Recall a value from a symbol, if bound */  /* Recall a value from a symbol, if bound */
440  extern void rcl(environment *env)  extern void rcl(environment *env)
441  {  {
442    value *val;    value *val;
443    
444    if(env->head == NULL) {    if(env->head == NULL) {
445      printerr("Stack empty");      printerr("Too Few Arguments");
446      env->err=1;      env->err=1;
447      return;      return;
448    }    }
449    
450    if(env->head->item->type!=symb) {    if(env->head->item->type!=symb) {
451      printerr("Not a symbol");      printerr("Bad Argument Type");
452      env->err=1;      env->err=2;
453      return;      return;
454    }    }
455    
456    val=((symbol *)(env->head->item->content.ptr))->val;    val=((symbol *)(env->head->item->content.ptr))->val;
457    if(val == NULL){    if(val == NULL){
458      printerr("Unbound variable");      printerr("Unbound Variable");
459      env->err=1;      env->err=3;
460      return;      return;
461    }    }
462    toss(env);            /* toss the symbol */    toss(env);            /* toss the symbol */
# Line 382  extern void rcl(environment *env) Line 464  extern void rcl(environment *env)
464    push_val(&(env->head), val); /* Return its bound value */    push_val(&(env->head), val); /* Return its bound value */
465  }  }
466    
467    void stack_read(environment*, char*);
468    
469  /* 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
470     function value, and if it is, toss the symbol and execute the     function value, and if it is, toss the symbol and execute the
471     function. */     function. */
472  extern void eval(environment *env)  extern void eval(environment *env)
473  {  {
474    funcp in_func;    funcp in_func;
475      value* temp_val;
476      stackitem* iterator;
477      char* temp_string;
478    
479    if(env->head==NULL) {    if(env->head==NULL) {
480      printerr("Stack empty");      printerr("Too Few Arguments");
481      env->err=1;      env->err=1;
482      return;      return;
483    }    }
484    
485    /* if it's a symbol */    switch(env->head->item->type) {
486    if(env->head->item->type==symb) {      /* if it's a symbol */
487      case symb:
488      rcl(env);                   /* get its contents */      rcl(env);                   /* get its contents */
489      if(env->err) return;      if(env->err) return;
490      if(env->head->item->type!=symb){ /* don't recurse symbols */      if(env->head->item->type!=symb){ /* don't recurse symbols */
491        eval(env);                        /* evaluate the value */        eval(env);                        /* evaluate the value */
492        return;        return;
493      }      }
494    }      break;
495    
496    /* If it's a lone function value, run it */      /* If it's a lone function value, run it */
497    if(env->head->item->type==func) {    case func:
498      in_func= (funcp)(env->head->item->content.ptr);      in_func= (funcp)(env->head->item->content.ptr);
499      toss(env);      toss(env);
500      if(env->err) return;      if(env->err) return;
501      (*in_func)(env);      (*in_func)(env);
502        break;
503    
504        /* If it's a list */
505      case list:
506        temp_val= env->head->item;
507        env->head->item->refcount++;
508        toss(env);
509        if(env->err) return;
510        iterator= (stackitem*)temp_val->content.ptr;
511        while(iterator!=NULL && iterator->item!=NULL) {
512          push_val(&(env->head), iterator->item);
513          if(env->head->item->type==symb
514            && strcmp(";", ((symbol*)(env->head->item->content.ptr))->id)==0) {
515            toss(env);
516            if(env->err) return;
517            eval(env);
518            if(env->err) return;
519          }
520          iterator= iterator->next;
521        }
522        free_val(temp_val);
523        break;
524    
525        /* If it's a string */
526      case string:
527        temp_val= env->head->item;
528        env->head->item->refcount++;
529        toss(env);
530        if(env->err) return;
531        temp_string= malloc(strlen((char*)temp_val->content.ptr)+5);
532        strcpy(temp_string, "[ ");
533        strcat(temp_string, (char*)temp_val->content.ptr);
534        strcat(temp_string, " ]");
535        stack_read(env, temp_string);
536        eval(env);
537        if(env->err) return;
538        free_val(temp_val);
539        free(temp_string);
540        break;
541    
542      default:
543    }    }
544  }  }
545    
546    /* Reverse (flip) a list */
547    extern void rev(environment *env){
548      stackitem *old_head, *new_head, *item;
549    
550      if((env->head)==NULL) {
551        printerr("Too Few Arguments");
552        env->err=1;
553        return;
554      }
555    
556      if(env->head->item->type!=list) {
557        printerr("Bad Argument Type");
558        env->err=2;
559        return;
560      }
561    
562      old_head=(stackitem *)(env->head->item->content.ptr);
563      new_head=NULL;
564      while(old_head != NULL){
565        item=old_head;
566        old_head=old_head->next;
567        item->next=new_head;
568        new_head=item;
569      }
570      env->head->item->content.ptr=new_head;
571    }
572    
573  /* Make a list. */  /* Make a list. */
574  extern void pack(environment *env)  extern void pack(environment *env)
575  {  {
# Line 454  extern void pack(environment *env) Line 610  extern void pack(environment *env)
610    temp->item= pack;    temp->item= pack;
611    
612    push(&(env->head), temp);    push(&(env->head), temp);
613      rev(env);
614  }  }
615    
616  /* Parse input. */  /* Parse input. */
617  int stack_read(environment *env, char *in_line)  void stack_read(environment *env, char *in_line)
618  {  {
619    char *temp, *rest;    char *temp, *rest;
620    int itemp;    int itemp;
621    size_t inlength= strlen(in_line)+1;    size_t inlength= strlen(in_line)+1;
622    int convert= 0;    int convert= 0;
   static int non_eval_flag= 0;  
623    
624    temp= malloc(inlength);    temp= malloc(inlength);
625    rest= malloc(inlength);    rest= malloc(inlength);
626    
627    do {    do {
628        /* If comment */
629        if((convert= sscanf(in_line, "#%[^\n\r]", rest))) {
630          free(temp); free(rest);
631          return;
632        }
633    
634      /* If string */      /* If string */
635      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "\"%[^\"\n\r]\" %[^\n\r]", temp, rest))) {
636        push_cstring(&(env->head), temp);        push_cstring(&(env->head), temp);
# Line 493  int stack_read(environment *env, char *i Line 655  int stack_read(environment *env, char *i
655      /* If single char */      /* If single char */
656      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {      if((convert= sscanf(in_line, "%c%[^\n\r]", temp, rest))) {
657        if(*temp==';') {        if(*temp==';') {
658          if(!non_eval_flag) {          if(!env->non_eval_flag) {
659            eval(env);            /* Evaluate top element */            eval(env);            /* Evaluate top element */
660            break;            break;
661          }          }
# Line 505  int stack_read(environment *env, char *i Line 667  int stack_read(environment *env, char *i
667        if(*temp==']') {        if(*temp==']') {
668          push_sym(env, "[");          push_sym(env, "[");
669          pack(env);          pack(env);
670          if(non_eval_flag!=0)          if(env->non_eval_flag)
671            non_eval_flag--;            env->non_eval_flag--;
672          break;          break;
673        }        }
674    
675        if(*temp=='[') {        if(*temp=='[') {
676          push_sym(env, "[");          push_sym(env, "[");
677          non_eval_flag++;          env->non_eval_flag++;
678          break;          break;
679        }        }
680      }      }
681    } while(0);    } while(0);
682    
   
683    free(temp);    free(temp);
684    
685    if(convert<2) {    if(convert<2) {
686      free(rest);      free(rest);
687      return 0;      return;
688    }    }
689        
690    stack_read(env, rest);    stack_read(env, rest);
691        
692    free(rest);    free(rest);
   return 1;  
693  }  }
694    
695  /* Relocate elements of the list on the stack. */  /* Relocate elements of the list on the stack. */
# Line 538  extern void expand(environment *env) Line 698  extern void expand(environment *env)
698    stackitem *temp, *new_head;    stackitem *temp, *new_head;
699    
700    /* Is top element a list? */    /* Is top element a list? */
701    if(env->head==NULL || env->head->item->type!=list) {    if(env->head==NULL) {
702      printerr("Stack empty or not a list");      printerr("Too Few Arguments");
703      env->err=1;      env->err=1;
704      return;      return;
705    }    }
706      if(env->head->item->type!=list) {
707        printerr("Bad Argument Type");
708        env->err=2;
709        return;
710      }
711    
712      rev(env);
713    
714      if(env->err)
715        return;
716    
717    /* The first list element is the new stack head */    /* The first list element is the new stack head */
718    new_head= temp= env->head->item->content.ptr;    new_head= temp= env->head->item->content.ptr;
# Line 567  extern void eq(environment *env) Line 737  extern void eq(environment *env)
737    int result;    int result;
738    
739    if((env->head)==NULL || env->head->next==NULL) {    if((env->head)==NULL || env->head->next==NULL) {
740      printerr("Not enough elements to compare");      printerr("Too Few Arguments");
741      env->err=1;      env->err=1;
742      return;      return;
743    }    }
# Line 586  extern void not(environment *env) Line 756  extern void not(environment *env)
756  {  {
757    int val;    int val;
758    
759    if((env->head)==NULL || env->head->item->type!=integer) {    if((env->head)==NULL) {
760      printerr("Stack empty or element is not a integer");      printerr("Too Few Arguments");
761      env->err=1;      env->err=1;
762      return;      return;
763    }    }
764    
765      if(env->head->item->type!=integer) {
766        printerr("Bad Argument Type");
767        env->err=2;
768        return;
769      }
770    
771    val= env->head->item->content.val;    val= env->head->item->content.val;
772    toss(env);    toss(env);
773    push_int(&(env->head), !val);    push_int(&(env->head), !val);
# Line 611  extern void def(environment *env) Line 787  extern void def(environment *env)
787    symbol *sym;    symbol *sym;
788    
789    /* 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 */
790    if(env->head==NULL || env->head->next==NULL    if(env->head==NULL || env->head->next==NULL) {
791       || env->head->item->type!=symb) {      printerr("Too Few Arguments");
     printerr("Define what?");  
792      env->err=1;      env->err=1;
793      return;      return;
794    }    }
795    
796      if(env->head->item->type!=symb) {
797        printerr("Bad Argument Type");
798        env->err=2;
799        return;
800      }
801    
802    /* long names are a pain */    /* long names are a pain */
803    sym=env->head->item->content.ptr;    sym=env->head->item->content.ptr;
804    
# Line 667  extern void forget(environment *env) Line 848  extern void forget(environment *env)
848    stackitem *stack_head= env->head;    stackitem *stack_head= env->head;
849    symbol **hash_entry, *temp;    symbol **hash_entry, *temp;
850    
851    if(stack_head==NULL || stack_head->item->type!=symb) {    if(stack_head==NULL) {
852      printerr("Stack empty or not a symbol");      printerr("Too Few Arguments");
853        env->err=1;
854        return;
855      }
856      
857      if(stack_head->item->type!=symb) {
858        printerr("Bad Argument Type");
859        env->err=2;
860      return;      return;
861    }    }
862    
# Line 684  extern void forget(environment *env) Line 872  extern void forget(environment *env)
872    }    }
873    free(temp->id);    free(temp->id);
874    free(temp);    free(temp);
875  }  }
876    
877    /* Returns the current error number to the stack */
878    extern void errn(environment *env){
879      push_int(&(env->head), env->err);
880    }
881    
882  int main()  int main()
883  {  {
# Line 703  int main() Line 896  int main()
896      }      }
897      printf("okidok\n ");      printf("okidok\n ");
898    }    }
899      quit(&myenv);
900      return EXIT_FAILURE;
901    }
902    
903    exit(EXIT_SUCCESS);  /* + */
904    extern void sx_2b(environment *env) {
905      int a, b;
906      size_t len;
907      char* new_string;
908      value *a_val, *b_val;
909    
910      if((env->head)==NULL || env->head->next==NULL) {
911        printerr("Too Few Arguments");
912        env->err=1;
913        return;
914      }
915    
916      if(env->head->item->type==string
917         && env->head->next->item->type==string) {
918        a_val= env->head->item;
919        b_val= env->head->next->item;
920        a_val->refcount++;
921        b_val->refcount++;
922        toss(env); if(env->err) return;
923        toss(env); if(env->err) return;
924        len= strlen(a_val->content.ptr)+strlen(b_val->content.ptr)+1;
925        new_string= malloc(len);
926        strcpy(new_string, b_val->content.ptr);
927        strcat(new_string, a_val->content.ptr);
928        free_val(a_val); free_val(b_val);
929        push_cstring(&(env->head), new_string);
930        free(new_string);
931        return;
932      }
933      
934      if(env->head->item->type!=integer
935         || env->head->next->item->type!=integer) {
936        printerr("Bad Argument Type");
937        env->err=2;
938        return;
939      }
940      a=env->head->item->content.val;
941      toss(env);
942      if(env->err) return;
943      b=env->head->item->content.val;
944      toss(env);
945      if(env->err) return;
946      push_int(&(env->head), a+b);
947  }  }

Legend:
Removed from v.1.35  
changed lines
  Added in v.1.53

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26