about summary refs log tree commit diff
path: root/users/wpcarro/emacs/.emacs.d/snippets/c-mode/struct
blob: 6e9282f83c79fa03174260c1422b3e6d9a28a4f7 (plain) (blame)
1
2
3
4
5
6
7
# -*- mode: snippet -*-
# name: struct
# key: struct
# --
typedef struct $1 {
  $2
} $1_t;