Convenience: index a single fixture file. */
| 140 | |
| 141 | /* Convenience: index a single fixture file. */ |
| 142 | static cbm_store_t *lang_index(LangProj *lp, const char *filename, const char *content) { |
| 143 | LangFile f = {filename, content}; |
| 144 | return lang_index_files(lp, &f, 1); |
| 145 | } |
| 146 | |
| 147 | static void lang_cleanup(LangProj *lp, cbm_store_t *store) { |
| 148 | if (store) { |
no test coverage detected