MCPcopy Create free account
hub / github.com/MultiMC/Launcher / toml_array_in

Function toml_array_in

libraries/tomlc99/src/toml.c:1812–1820  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1810}
1811
1812toml_array_t* toml_array_in(const toml_table_t* tab, const char* key)
1813{
1814 int i;
1815 for (i = 0; i < tab->narr; i++) {
1816 if (0 == strcmp(key, tab->arr[i]->key))
1817 return tab->arr[i];
1818 }
1819 return 0;
1820}
1821
1822
1823toml_table_t* toml_table_in(const toml_table_t* tab, const char* key)

Callers 2

parse_selectFunction · 0.85
ReadMCModTOMLFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected