Upload Files

This commit is contained in:
phikill 2025-06-24 19:21:07 -03:00
parent d440e3e71c
commit a95b98a606
1054 changed files with 265055 additions and 0 deletions

27
.vscode/c_cpp_properties.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
"version": 4,
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/include"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c89",
"intelliSenseMode": "linux-gcc-x64"
},
{
"name": "Mac",
"includePath": ["${workspaceFolder}/include"],
"compilerPath": "/usr/bin/clang",
"cStandard": "c89",
"intelliSenseMode": "macos-clang-x64"
},
{
"name": "Win",
"includePath": ["${workspaceFolder}\\include"],
"compilerPath": "C:\\Program Files\\LLVM\\bin\\clang.exe",
"cStandard": "c89",
"intelliSenseMode": "windows-clang-x64"
}
]
}