Files
dotfiles/my-snippets/UltiSnips/c.snippets
murgi 068d708cf2 Squashed 'vim/' content from commit bb3025e
git-subtree-dir: vim
git-subtree-split: bb3025e5a5f91efe7cee8a6b44c34a8d945956e3
2017-04-12 10:07:28 +02:00

12 lines
313 B
Plaintext

snippet dprintk "Printk current func and debug info ..."
printk("%s: ${1}\n", __func__${2});
endsnippet
snippet dprint "Printk current func and debug info ..."
printf("%s: ${1}\n", __func__${2});
endsnippet
snippet dprintf "Printk current func and debug info ..."
printf("%s: ${1}\n", __func__${2});
endsnippet