mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
81 lines
2.3 KiB
Plaintext
81 lines
2.3 KiB
Plaintext
{
|
|
"Fennix Kernel 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 <https://www.gnu.org/licenses/>.",
|
|
"*/",
|
|
"",
|
|
"#ifndef __FENNIX_KERNEL_${2:header}_H__",
|
|
"#define __FENNIX_KERNEL_${2:header}_H__",
|
|
"",
|
|
"#include <types.h>",
|
|
"",
|
|
"$0",
|
|
"",
|
|
"#endif // !__FENNIX_KERNEL_${2:header}_H__",
|
|
""
|
|
],
|
|
"description": "Create kernel header."
|
|
},
|
|
"Fennix Kernel brief": {
|
|
"prefix": [
|
|
"brief",
|
|
],
|
|
"body": [
|
|
"/** @brief $0 */"
|
|
],
|
|
"description": "Create kernel documentation brief."
|
|
},
|
|
"For Iteratoion": {
|
|
"prefix": [
|
|
"foritr",
|
|
],
|
|
"body": [
|
|
"forItr(${1:itr}, ${2:container})",
|
|
"{",
|
|
"\t$0",
|
|
"}"
|
|
],
|
|
"description": "Create for loop with iterator."
|
|
},
|
|
"License": {
|
|
"prefix": [
|
|
"license",
|
|
],
|
|
"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 <https://www.gnu.org/licenses/>.",
|
|
"*/"
|
|
],
|
|
"description": "Create kernel license."
|
|
}
|
|
} |