added GPL2

This commit is contained in:
Gert 2015-03-04 22:03:29 +01:00
parent 902ae7190f
commit 6b1c3c618d

View File

@ -92,3 +92,22 @@ snippet fun
function ${1:function_name}() { function ${1:function_name}() {
${0:#function_body} ${0:#function_body}
} }
snippet GPL2
#########################################################################
# ${1:One line to give the program's name and a brief description.} #
# Copyright (C) `strftime("%Y")` ${2:`g:snips_author`} #
# #
# This script is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 2 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program; if not, see <http://www.gnu.org/licenses/>. #
#########################################################################