yasnippet-snippets/c-mode/guard
Andrea Crotti 8ca3930928 snippets
2010-08-12 12:13:13 +02:00

10 lines
100 B
Plaintext

# -*- mode: snippet -*-
# name: guard
# key: guard
# --
#ifndef ${1:NAME}_H
#define $1_H
$0
#endif