Files
dotfiles/Emacs/.config/emacs/.config/yasnippet/snippets/cc-mode/once

11 lines
137 B
Plaintext

# -*- mode: snippet -*-
# name: #ifndef XXX; #define XXX; #endif
# key: once
# uuid: once
# --
#ifndef $1
#define $1
$0
#endif /* $1 */