Added C snippets. (fopen,fgets) #2
This commit is contained in:
parent
e204a66252
commit
66e7c28339
@ -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});
|
||||
|
Loading…
Reference in New Issue
Block a user