From 393c8ba4cbbf12735892cb81bf2fead97c7bb098 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Fri, 8 Nov 2024 02:30:57 +0200 Subject: [PATCH] chore: Update vscode boilerplates --- .vscode/c_boilerplates.code-snippets | 33 +++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/.vscode/c_boilerplates.code-snippets b/.vscode/c_boilerplates.code-snippets index 7baae13..7ec8219 100644 --- a/.vscode/c_boilerplates.code-snippets +++ b/.vscode/c_boilerplates.code-snippets @@ -1,8 +1,39 @@ { - "Fennix Kernel Header": { + "Fennix Kernel C++ Header": { "prefix": [ "head", ], + "body": [ + "/*", + "\tThis file is part of Fennix Kernel.", + "", + "\tFennix Kernel is free software: you can redistribute it and/or", + "\tmodify it under the terms of the GNU General Public License as", + "\tpublished by the Free Software Foundation, either version 3 of", + "\tthe License, or (at your option) any later version.", + "", + "\tFennix Kernel is distributed in the hope that it will be useful,", + "\tbut WITHOUT ANY WARRANTY; without even the implied warranty of", + "\tMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the", + "\tGNU General Public License for more details.", + "", + "\tYou should have received a copy of the GNU General Public License", + "\talong with Fennix Kernel. If not, see .", + "*/", + "", + "#pragma once", + "", + "$0", + "", + "$1", + "" + ], + "description": "Create kernel header." + }, + "Fennix Kernel C Header": { + "prefix": [ + "headc", + ], "body": [ "/*", "\tThis file is part of Fennix Kernel.",