]> Creatis software - crea.git/blobdiff - appli/creaSed/creaSed.cpp
*** empty log message ***
[crea.git] / appli / creaSed / creaSed.cpp
index 51ca114fd82642ab297d8bf2015eb1f725a99c74..288c10d9ce356d4e868df1a6cb6e369f4b202f2b 100644 (file)
@@ -1,5 +1,4 @@
 
-#include <stdio.h>
 #include <stdio.h>
 #include <iostream>
 #include <fstream>
@@ -7,21 +6,19 @@
 #include <vector>
 
 
-
-    void replace( std::string& str,
-                       const std::string& from, 
-                        const std::string& to )
-    {
-      using std::string;
-      string::size_type pos = str.find( from );
-      while ( pos != string::npos )
-      {
-        str.replace( pos, from.size(), to );
-        pos = str.find( from, pos+from.size()-1 );
-      } 
-    }
-
-
+//==========================================================================
+void replace(std::string& str,
+                        const std::string& from, 
+             const std::string& to )
+{
+       std::string::size_type pos = str.find( from );
+       while ( pos != std::string::npos )
+       {
+               str.replace( pos, from.size(), to );
+               pos = str.find( from, pos+from.size()-1 );
+       } 
+}
+//==========================================================================
 
 
 //==========================================================================
@@ -59,7 +56,7 @@ int main(int argc, char **argv)
         }
        fclose(ffIn);   
   } else {
-      std::cerr << "ERROR. File : "<< argv[1] <<" Not exists." << std::endl;
+      std::cerr << "ERROR. File : "<< argv[1] <<" does not exists." << std::endl;
       return 1;
   }