Diff for /rpl/src/instructions_e2.c between versions 1.64 and 1.75

version 1.64, 2016/03/01 22:12:30 version 1.75, 2019/10/31 15:40:10
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.1.25    RPL/2 (R) version 4.1.32
   Copyright (C) 1989-2016 Dr. BERTRAND Joël    Copyright (C) 1989-2019 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 1132  instruction_externals(struct_processus * Line 1132  instruction_externals(struct_processus *
   
             strcpy((unsigned char *) (*(*l_element_courant).donnee).objet,              strcpy((unsigned char *) (*(*l_element_courant).donnee).objet,
                     (*s_etat_processus).s_instructions_externes[i].nom);                      (*s_etat_processus).s_instructions_externes[i].nom);
   
               if ((*s_etat_processus).s_instructions_externes[i].position_fleche
                       >= 0)
               {
                   memcpy((unsigned char *) (*(*l_element_courant).donnee).objet
                           + (*s_etat_processus).s_instructions_externes[i]
                           .position_fleche - (strlen((*s_etat_processus)
                           .s_instructions_externes[i].nom_bibliotheque) + 1),
                           "->", 2);
               }
         }          }
         else          else
         {          {
Line 1148  instruction_externals(struct_processus * Line 1158  instruction_externals(struct_processus *
                     "%s$%s", (*s_etat_processus).s_instructions_externes[i]                      "%s$%s", (*s_etat_processus).s_instructions_externes[i]
                     .nom_bibliotheque, (*s_etat_processus)                      .nom_bibliotheque, (*s_etat_processus)
                     .s_instructions_externes[i].nom);                      .s_instructions_externes[i].nom);
   
               if ((*s_etat_processus).s_instructions_externes[i].position_fleche
                       >= 0)
               {
                   memcpy((unsigned char *) (*(*l_element_courant).donnee).objet
                           + (*s_etat_processus).s_instructions_externes[i]
                           .position_fleche, "->", 2);
               }
         }          }
     }      }
   

Removed from v.1.64  
changed lines
  Added in v.1.75


CVSweb interface <joel.bertrand@systella.fr>