Files
dotfiles/my-snippets/UltiSnips/c.snippets
T

12 lines
397 B
Plaintext
Raw Normal View History

2017-04-12 10:07:28 +02:00
snippet dprintk "Printk current func and debug info ..."
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
2017-04-12 10:07:28 +02:00
endsnippet
snippet dprint "Printk current func and debug info ..."
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
2017-04-12 10:07:28 +02:00
endsnippet
snippet dprintf "Printk current func and debug info ..."
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
2017-04-12 10:07:28 +02:00
endsnippet