]> SALOME platform Git repositories - tools/hxx2salome.git/blob - scripts/parse2.awk
Salome HOME
set-up .gitignore file
[tools/hxx2salome.git] / scripts / parse2.awk
1 # suppress blanks between type and indirection or reference operators (* and &)
2 # --
3 # Copyright (C) CEA, EDF
4 # Author : Nicolas Crouzet (CEA)
5 # --
6 { gsub(/[ \t]+&/,"\\& ")
7   gsub(/[ \t]+\*/,"* ")
8   print $0 }