Diff for /rpl/src/conversion.awk between versions 1.1 and 1.6

version 1.1, 2010/01/26 15:22:44 version 1.6, 2011/06/21 07:45:21
Line 13  BEGIN { Line 13  BEGIN {
 /^([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]+[ ]+)+/ {  /^([abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_]+[ ]+)+/ {
     if (indicateur == 1)      if (indicateur == 1)
     {      {
         if ($1 == "unsigned" || $1 == "signed") LIGNE = $3; else LIGNE = $2;          if ($1 == "unsigned" || $1 == "signed" || $1 == "inline")
               LIGNE = $3;
           else
               LIGNE = $2;
         LIGNE = substr(LIGNE, 1, index(LIGNE, "(") - 1);          LIGNE = substr(LIGNE, 1, index(LIGNE, "(") - 1);
         while(substr(LIGNE, 1, 1) == "*")          while(substr(LIGNE, 1, 1) == "*")
             LIGNE = substr(LIGNE, 2, length(LIGNE) - 1);              LIGNE = substr(LIGNE, 2, length(LIGNE) - 1);

Removed from v.1.1  
changed lines
  Added in v.1.6


CVSweb interface <joel.bertrand@systella.fr>