summaryrefslogtreecommitdiff
path: root/introspect.awk
diff options
context:
space:
mode:
Diffstat (limited to 'introspect.awk')
-rw-r--r--introspect.awk13
1 files changed, 13 insertions, 0 deletions
diff --git a/introspect.awk b/introspect.awk
new file mode 100644
index 000000000..593191384
--- /dev/null
+++ b/introspect.awk
@@ -0,0 +1,13 @@
+BEGIN {
+ print "<!DOCTYPE node PUBLIC DBUS_INTROSPECT_1_0_XML_PUBLIC_IDENTIFIER"
+ print "DBUS_INTROSPECT_1_0_XML_SYSTEM_IDENTIFIER>"
+ print "<node>"
+}
+
+// {
+ print
+}
+
+END {
+ print "</node>"
+}