We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d1ea6f + 4fc15c7 commit 88e2099Copy full SHA for 88e2099
snippets/c-mode/fgets
@@ -0,0 +1,5 @@
1
+# -*- mode: snippet -*-
2
+# name: fgets
3
+# key: fgets
4
+# --
5
+fgets(${1:variable}, ${2:size}, ${3:stdin});
snippets/c-mode/fprintf
+# name: fprintf
+# key: fprintf
+fprintf(${1:stdout}, "${2:format string}", ${3:variable});
snippets/c-mode/scanf
+# name: scanf
+# key: scanf
+scanf("${1:format string}", ${2:&variable});
snippets/c-mode/strstr
+# name: strstr
+# key: strstr
+strstr(${1:string}, ${2:string});
0 commit comments