Improve C snip; removing trivial comment

This commit is contained in:
ujihisa 2013-07-09 18:29:35 -07:00
parent 466124f4b2
commit 0d8e32fe38
1 changed files with 0 additions and 3 deletions

View File

@ -114,7 +114,6 @@ abbr include-guard
snippet conditional
(${1:#:condition}) ? ${2:#:a} : ${3:#:b}
# Typedef
snippet typedef
typedef ${1:#:base_type} ${2:#:custom_type};
@ -143,14 +142,12 @@ snippet helloworld
return 0;
}
# fopen
snippet fopen
abbr fopen("...", "...");
fopen("${1:PATH}", "${2:MODE}");
${0:TARGET}
fclose(${3:FD});
# fgets
snippet fgets
abbr fgets(row, length, file);
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});