summaryrefslogtreecommitdiff
path: root/contrib/uninclude
diff options
context:
space:
mode:
authorHans-Peter Nilsson <hp@axis.com>2007-03-17 19:08:50 +0000
committerHans-Peter Nilsson <hp@gcc.gnu.org>2007-03-17 19:08:50 +0000
commita8af9c34fded5ce25e60c939de31b5e1fb27c056 (patch)
treec474ed9fe9a1e526abad4d47d9b0757d90d94148 /contrib/uninclude
parent79b8aae86dcf4f0409575cae0dc89f8c41fe4c4b (diff)
* uninclude: New utility, from Alexandre Oliva.
From-SVN: r123027
Diffstat (limited to 'contrib/uninclude')
-rwxr-xr-xcontrib/uninclude52
1 files changed, 52 insertions, 0 deletions
diff --git a/contrib/uninclude b/contrib/uninclude
new file mode 100755
index 00000000000..fa39ea1f54b
--- /dev/null
+++ b/contrib/uninclude
@@ -0,0 +1,52 @@
+#! /bin/sh
+
+# (C) 1998, 2007 Free Software Foundation
+# Originally by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
+
+# This gawk/shell script is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+
+# Given a preprocessed C/C++ code snippet, this script will replace any
+# standard header files with an actual #include <...> directive.
+
+# Example:
+# # 1 "test.c"
+# # 1 "/usr/include/stdio.h" 1 3
+# <snip>
+# # 1 "test.c" 2
+#
+# main() { printf("Hello world!\n"); }
+
+# is replaced with
+# # 1 "test.c"
+# #include <stdio.h>
+# main() { printf("Hello world!\n"); }
+
+
+# Header files whose pathnames contain any of the following patterns
+# are considered as standard headers: usr/include, g++-include,
+# include/g++, include/c++/<version>, gcc-lib/<anything>/include.
+
+gawk ${EXCLUDEPATT+-vexclude="$EXCLUDEPATT"} \
+ ${INCLUDEPATT+-vinclude="$INCLUDEPATT"} '
+BEGIN {
+ skipping = 0;
+ cppline = "^# [0-9]+ \"[^\"]*/(usr/include|g\\+\\+-include|include/g\\+\\+|include/c\\+\\+/[^/]+|gcc-lib/[^\"]+/include|gcc/include)/([^\"]+)\"( [1-4])*$"
+}
+!skipping && $0 ~ cppline &&
+(exclude == "" || $3 !~ exclude) && (include == "" || $3 ~ include) {
+ skipping = 1;
+ printf "%s\n", "#include <" gensub(cppline, "\\2", "", $0) ">"
+ next;
+}
+skipping && /^# [0-9]+ / && $3 == lastincluded {
+ skipping = 0;
+ next;
+}
+!skipping && /^# [0-9]+ / {
+ lastincluded = $3;
+}
+!skipping { print }
+' ${1+"$@"}