summarylogtreecommitdiffstats
path: root/skeleton-c
diff options
context:
space:
mode:
authorChristian Hesse2015-06-30 10:32:38 +0200
committerChristian Hesse2015-06-30 10:32:38 +0200
commit1d61643ce23aa5c0d4789b994e04493c90fb2613 (patch)
treed2a43ba9bdc79aa8f27cc474a80f4e6085e24ee3 /skeleton-c
downloadaur-1d61643ce23aa5c0d4789b994e04493c90fb2613.tar.gz
initial import of vim-skeleton 0.0.3.r0.g7309644-8
Diffstat (limited to 'skeleton-c')
-rw-r--r--skeleton-c19
1 files changed, 19 insertions, 0 deletions
diff --git a/skeleton-c b/skeleton-c
new file mode 100644
index 000000000000..f5d9b073a486
--- /dev/null
+++ b/skeleton-c
@@ -0,0 +1,19 @@
+/*
+ * (C) 2015 by Christian Hesse <mail@eworm.de>
+ *
+ * This software may be used and distributed according to the terms
+ * of the GNU General Public License, incorporated herein by reference.
+ *
+ * This is an example code skeleton provided by vim-skeleton.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc, char **argv) {
+ /* your code goes here */
+
+ return EXIT_SUCCESS;
+}
+
+// vim: set syntax=c: