]> pd.if.org Git - pdclib/commitdiff
Add hello world file which can be used to establish that the I/O routines are working
authorOwen Shepherd <owen.shepherd@e43.eu>
Thu, 27 Dec 2012 00:19:49 +0000 (00:19 +0000)
committerOwen Shepherd <owen.shepherd@e43.eu>
Thu, 27 Dec 2012 00:19:49 +0000 (00:19 +0000)
helloworld.c [new file with mode: 0644]

diff --git a/helloworld.c b/helloworld.c
new file mode 100644 (file)
index 0000000..bc9f993
--- /dev/null
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+// This test program is provided to enable a quick test of PDCLib's console I/O
+// functions
+
+int main(int argc, char** argv)
+{
+    printf("Hello world\n");
+}
\ No newline at end of file