MCPcopy Create free account
hub / github.com/Singular/Singular / feGetResourceConfig

Function feGetResourceConfig

resources/feResource.cc:213–222  ·  view source on GitHub ↗

* * Local functions * *****************************************************************/

Source from the content-addressed store, hash-verified

211 *
212 *****************************************************************/
213static feResourceConfig feGetResourceConfig(const char id)
214{
215 int i = 0;
216 while (feResourceConfigs[i].key != NULL)
217 {
218 if (feResourceConfigs[i].id == id) return &(feResourceConfigs[i]);
219 i++;
220 }
221 return NULL;
222}
223
224static feResourceConfig feGetResourceConfig(const char* key)
225{

Callers 3

feResourceFunction · 0.85
feGetResourceFunction · 0.85
feResourceDefaultFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected