From 2df1ce51ff25c114011e1d01dbb0b6b6da7b2c1a Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 4 Nov 2024 21:26:41 +0100 Subject: chore(tree-sitter-yts): Add copyright headers --- tree-sitter-yts/src/grammar.json.license | 9 +++++++++ tree-sitter-yts/src/node-types.json.license | 9 +++++++++ tree-sitter-yts/src/parser.c | 12 ++++++++++++ tree-sitter-yts/src/tree_sitter/parser.h | 12 ++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 tree-sitter-yts/src/grammar.json.license create mode 100644 tree-sitter-yts/src/node-types.json.license (limited to 'tree-sitter-yts/src') diff --git a/tree-sitter-yts/src/grammar.json.license b/tree-sitter-yts/src/grammar.json.license new file mode 100644 index 0000000..d4d410f --- /dev/null +++ b/tree-sitter-yts/src/grammar.json.license @@ -0,0 +1,9 @@ +yt - A fully featured command line YouTube client + +Copyright (C) 2024 Benedikt Peetz +SPDX-License-Identifier: GPL-3.0-or-later + +This file is part of Yt. + +You should have received a copy of the License along with this program. +If not, see . diff --git a/tree-sitter-yts/src/node-types.json.license b/tree-sitter-yts/src/node-types.json.license new file mode 100644 index 0000000..d4d410f --- /dev/null +++ b/tree-sitter-yts/src/node-types.json.license @@ -0,0 +1,9 @@ +yt - A fully featured command line YouTube client + +Copyright (C) 2024 Benedikt Peetz +SPDX-License-Identifier: GPL-3.0-or-later + +This file is part of Yt. + +You should have received a copy of the License along with this program. +If not, see . diff --git a/tree-sitter-yts/src/parser.c b/tree-sitter-yts/src/parser.c index 3b43659..ea08f34 100644 --- a/tree-sitter-yts/src/parser.c +++ b/tree-sitter-yts/src/parser.c @@ -1,3 +1,15 @@ +/* + * yt - A fully featured command line YouTube client + * + * Copyright (C) 2024 Benedikt Peetz + * SPDX-License-Identifier: GPL-3.0-or-later + * + * This file is part of Yt. + * + * You should have received a copy of the License along with this program. + * If not, see . + */ + #include #if defined(__GNUC__) || defined(__clang__) diff --git a/tree-sitter-yts/src/tree_sitter/parser.h b/tree-sitter-yts/src/tree_sitter/parser.h index 1cbb75a..433fdf0 100644 --- a/tree-sitter-yts/src/tree_sitter/parser.h +++ b/tree-sitter-yts/src/tree_sitter/parser.h @@ -1,3 +1,15 @@ +/* + * yt - A fully featured command line YouTube client + * + * Copyright (C) 2024 Benedikt Peetz + * SPDX-License-Identifier: GPL-3.0-or-later + * + * This file is part of Yt. + * + * You should have received a copy of the License along with this program. + * If not, see . + */ + #ifndef TREE_SITTER_PARSER_H_ #define TREE_SITTER_PARSER_H_ -- cgit 1.4.1