Turn core_info_does_support_file static
This commit is contained in:
parent
bd56e0c02e
commit
6576348198
|
@ -477,7 +477,8 @@ bool core_info_does_support_any_file(const core_info_t *core,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool core_info_does_support_file(const core_info_t *core, const char *path)
|
static bool core_info_does_support_file(
|
||||||
|
const core_info_t *core, const char *path)
|
||||||
{
|
{
|
||||||
if (!path || !core || !core->supported_extensions_list)
|
if (!path || !core || !core->supported_extensions_list)
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -90,9 +90,6 @@ typedef struct core_info_ctx_find
|
||||||
|
|
||||||
size_t core_info_list_num_info_files(core_info_list_t *list);
|
size_t core_info_list_num_info_files(core_info_list_t *list);
|
||||||
|
|
||||||
bool core_info_does_support_file(const core_info_t *info,
|
|
||||||
const char *path);
|
|
||||||
|
|
||||||
bool core_info_does_support_any_file(const core_info_t *info,
|
bool core_info_does_support_any_file(const core_info_t *info,
|
||||||
const struct string_list *list);
|
const struct string_list *list);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue