Epitech C SnippetsC'est une extension de snippets pour visual studio code en C. Installation
Usage
fori for(i = 0;i < length;i++){}
for for(index = 0;index < length;index++)
dowhile do{}while{}
while while(){}
if if(){}
ifelse if(){}else{}
printf printf("msg");
inti int i = 0;
char* char* str = "msg"
inc #include <>
main void main(int ac,char **av){}
switch switch(){case:breadk;default:break}
void void functionname(args){}
function funtionname(arg){}
enum enum name{}
ifndef #ifndef #endif
struct struct name{}
union union name{}
|