summaryrefslogtreecommitdiff
path: root/doc/examples/filtering/files/libhello/libhello.c
diff options
context:
space:
mode:
Diffstat (limited to 'doc/examples/filtering/files/libhello/libhello.c')
-rw-r--r--doc/examples/filtering/files/libhello/libhello.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/examples/filtering/files/libhello/libhello.c b/doc/examples/filtering/files/libhello/libhello.c
new file mode 100644
index 000000000..759b33926
--- /dev/null
+++ b/doc/examples/filtering/files/libhello/libhello.c
@@ -0,0 +1,9 @@
+/*
+ * libhello.c - The hello library
+ */
+#include <stdio.h>
+
+void hello(const char *person)
+{
+ printf("Hello %s\n", person);
+}