Salome HOME
Adopt to new environment (there can be no QTDIR, but QT4_ROOT_DIR instead).
[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 }