Added C snippets. (fopen,fgets)

This commit is contained in:
boxp 2013-07-09 21:35:44 +09:00
parent 157863b7cb
commit e204a66252
1 changed files with 9 additions and 0 deletions

View File

@ -143,3 +143,12 @@ snippet helloworld
return 0;
}
# fopen
snippet fopen
abbr fopen("...", "...");
fopen("${0:#:TARGET}", "${1:#:MODE}");
# fgets
snippet fgets
abbr fgets(..., ..., ...);
fgets(${0:#:ROW}, ${1:#:LENGTH}, ${2:#:FILE});