| 1810 | } |
| 1811 | |
| 1812 | toml_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 | |
| 1823 | toml_table_t* toml_table_in(const toml_table_t* tab, const char* key) |
no outgoing calls
no test coverage detected