src/simple_hello.c
changeset 10 e74c23297b11
parent 6 d2036d7799fd
child 27 461be4cd34a3
--- a/src/simple_hello.c	Fri Sep 26 21:20:48 2008 +0300
+++ b/src/simple_hello.c	Sat Sep 27 00:20:47 2008 +0300
@@ -20,6 +20,12 @@
 static struct simple_node node_list[] = {
     {   1,  S_IFDIR,    0555,   0,  NULL,       NULL                },
     {   2,  S_IFREG,    0444,   1,  "hello",    "Hello World!\n"    },
+    {   3,  S_IFREG,    0444,   1,  "foo",      "Foo\n"             },
+    {   4,  S_IFREG,    0444,   1,  "bar",      "Bar\n"             },
+    {   5,  S_IFDIR,    0555,   1,  "test",     NULL                },
+    {   6,  S_IFREG,    0444,   5,  "file0",    "data0\n"           },
+    {   7,  S_IFREG,    0444,   5,  "file1",    "data1\n"           },
+    {   8,  S_IFLNK,    0444,   1,  "lnk0",     "test/file0"        },
     {   0,  0,          0,      0,  NULL,       NULL                },
 };