Starship/.vscode/c_cpp_properties.json
petrie911 b698fd3628
Header fix (#9)
* headers

* format

* format

* format again

* headers oh my

* irix is love

* irix is life

* working

* even more fixes

* format

* touching to rebuild
2023-10-23 17:02:01 -03:00

25 lines
670 B
JSON

{
"configurations": [
{
"name": "Linux",
"compilerPath": "${default}",
"compilerArgs": [
"-m32"
],
"intelliSenseMode": "${default}", // Shouldn't matter
"includePath": [
"${workspaceFolder}/**",
"src",
"build",
"include"
],
"defines": [
"_LANGUAGE_C",
"_MIPS_SZLONG=32"
],
"cStandard": "gnu89", // C89 + some GNU extensions from C99 like C++ comments
"cppStandard": "${default}"
}
],
"version": 4
}