Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix Manifest.in
[simgrid.git] / src / xbt / automaton / parserPromela.lex
index 956ba7ef4ef1f0417103eb35f8b54a4d47ef4080..461c3237c0f32180db329b1aba13f3ef48ac7663 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2012-2018. The SimGrid Team.
+/* Copyright (c) 2012-2023. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -73,7 +73,7 @@ commentaire  "/*"([^\*\/]*{nouv_ligne}*[^\*\/]*)*"*/"
 [a-zA-Z]{caractere}*      { yylval.string=(char *)malloc(strlen(yytext)+1);
                             sscanf(yytext,"%s",yylval.string);
                                              return (ID); }
-               
+
 {numl}                    { }
 
 .                         { }