summaryrefslogtreecommitdiffstats
path: root/doc/tools/src2html1.4a/Ctags/z.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 16:03:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-14 16:03:45 +0000
commit52461c587563822939b238379bb1d72975e80b62 (patch)
tree453b3e3982d1af792bd6b4e6973e429b25dd8539 /doc/tools/src2html1.4a/Ctags/z.c
parentNow builds for all formats and includes urls (diff)
downloadrtems-52461c587563822939b238379bb1d72975e80b62.tar.bz2
New files
Diffstat (limited to 'doc/tools/src2html1.4a/Ctags/z.c')
-rw-r--r--doc/tools/src2html1.4a/Ctags/z.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/tools/src2html1.4a/Ctags/z.c b/doc/tools/src2html1.4a/Ctags/z.c
new file mode 100644
index 0000000000..4c90e6ec95
--- /dev/null
+++ b/doc/tools/src2html1.4a/Ctags/z.c
@@ -0,0 +1,20 @@
+#define fred 23
+#define jim(a) (a+2)
+
+int helo;
+
+struct thing {
+ int v;
+} doris;
+
+union what {
+ int v;
+ char q;
+} mary;
+
+enum thinddd { 1,2,3,4,5 } zoo;
+
+typedef unsigned int uinty;
+
+int rain()
+ { printf("Hello world\n"); }