aboutsummaryrefslogtreecommitdiffstats
path: root/snippets/c-mode
diff options
context:
space:
mode:
Diffstat (limited to 'snippets/c-mode')
-rw-r--r--snippets/c-mode/main11
-rw-r--r--snippets/c-mode/main~11
2 files changed, 22 insertions, 0 deletions
diff --git a/snippets/c-mode/main b/snippets/c-mode/main
new file mode 100644
index 0000000..4ef3d2a
--- /dev/null
+++ b/snippets/c-mode/main
@@ -0,0 +1,11 @@
+# -*- mode: snippet -*-
+# name: main
+# key: main
+# --
+
+#include <stdio.h>
+
+int main(int arc, char** argv)
+{
+ return 0;
+} \ No newline at end of file
diff --git a/snippets/c-mode/main~ b/snippets/c-mode/main~
new file mode 100644
index 0000000..3821a77
--- /dev/null
+++ b/snippets/c-mode/main~
@@ -0,0 +1,11 @@
+# -*- mode: snippet -*-
+# name: main
+# key: main
+# --
+
+\#include <stdio.h>
+
+int main(int arc, char** argv)
+{
+ return 0;
+} \ No newline at end of file