-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc.json
More file actions
44 lines (42 loc) · 649 Bytes
/
c.json
File metadata and controls
44 lines (42 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"c boilerplate by Pranav": {
"prefix": "cb",
"body": [
"#include<stdio.h>",
"int main(){",
"\t$1",
"\treturn 0;",
"}"
],
"description": "c language boilerplate"
},
"if else snippet by Pranav": {
"prefix": "cif",
"body": [
"if($1){",
"\t$2",
"}else{",
"\t$3",
"}"
],
"description": "if else snippet"
},
"for snippet by Pranav": {
"prefix": "cfor",
"body": [
"for($1; $2; $3){",
"\t$4",
"}"
],
"description": "for loop snippet"
},
"while snippet by pranav": {
"prefix": "cwhile",
"body": [
"while($1){",
"\t$2",
"}"
],
"description": "while loop snippet"
}
}