This commit is contained in:
2016-02-22 12:26:12 +01:00
parent 46a9040434
commit 96e9527a0e
65 changed files with 0 additions and 1351 deletions

View File

@@ -1,7 +0,0 @@
#name : do { ... } while (...)
# key: do
# --
do
{
$0
} while (${1:condition});

View File

@@ -1,8 +0,0 @@
# -*- mode: snippet -*-
# contributor: York Zhao
# name: for_n
# key: forn
# --
for (${1:auto }${2:i} = ${3:0}; $2 < ${4:MAXIMUM}; ++$2) {
$0
}

View File

@@ -1,9 +0,0 @@
# -*- mode: snippet -*-
# name: main
# key: main
# --
int main(${1:int argc, char *argv[]})
{
$0
return 0;
}

View File

@@ -1,7 +0,0 @@
#name : struct ... { ... }
# key: struct
# --
struct ${1:name}
{
$0
};