summaryrefslogblamecommitdiffstats
path: root/emacs.d/lisp/yasnippet/snippets/cc-mode/for
blob: c4cade665b3ed98b8acac6baa6488eb92b5a9e2d (plain) (tree)
1
2
3
4
5
6





                                          
#name : for (...; ...; ...) { ... }
# --
for (${1:int i = 0}; ${2:i < N}; ${3:++i})
{
    $0
}