Method
FoundryFileSearchOptionsdup_excluded_patterns
unstable since: 1.1
Declaration [src]
char**
foundry_file_search_options_dup_excluded_patterns (
FoundryFileSearchOptions* self
)
Description [src]
Gets a copy of the excluded file patterns.
These patterns define which files should be excluded from the search. Files that match any of these patterns will be skipped during the search. The patterns use shell-style globbing (e.g. “*.o”).
Available since: 1.1
Return value
Type: An array of utf8
A newly allocated array of excluded file
patterns, or NULL if not set. Free with g_strfreev() when no longer needed.
The array is NULL-terminated. |
| The caller of the method takes ownership of the returned data, and is responsible for freeing it. |
The return value can be NULL. |
| Each element is a NUL terminated UTF-8 string. |