Added C snippets. (fopen,fgets) #2

This commit is contained in:
boxp 2013-07-09 13:04:34 +09:00
parent e204a66252
commit 66e7c28339
1 changed files with 3 additions and 3 deletions

View File

@ -146,9 +146,9 @@ snippet helloworld
# fopen
snippet fopen
abbr fopen("...", "...");
fopen("${0:#:TARGET}", "${1:#:MODE}");
fopen("${0:TARGET}", "${1:MODE}");
# fgets
snippet fgets
abbr fgets(..., ..., ...);
fgets(${0:#:ROW}, ${1:#:LENGTH}, ${2:#:FILE});
abbr fgets(row, length, file);
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});