Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/bfbbdecomp/bfbb
/ xIniGetString
Function
xIniGetString
src/SB/Core/x/xIni.cpp:194–202 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
192
}
193
194
char* xIniGetString(xIniFile* ini, char* tok, char* def)
195
{
196
S32 index = xIniGetIndex(ini, tok);
197
if (index == -1)
198
{
199
return def;
200
}
201
return ini->Values[index].val;
202
}
Callers
4
load_settings
Method · 0.85
zMainParseINIGlobals
Function · 0.85
zMainReadINI
Function · 0.85
zUI_ParseINI
Function · 0.85
Calls
1
xIniGetIndex
Function · 0.85
Tested by
no test coverage detected