diff options
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/config.h b/config.h index f652324..bfe36fe 100644 --- a/config.h +++ b/config.h @@ -1,13 +1,11 @@ -char *ignored_dirs[] = { "node_modules", ".mypy_cache", ".git", - ".hg", "__pycache__", ".eggs" }; +char *ignored_dirs[] = {"node_modules", ".mypy_cache", ".git", + ".hg", "__pycache__", ".eggs"}; size_t ignored_dirs_size = sizeof(ignored_dirs) / sizeof(ignored_dirs[0]); -char *ignored_extensions[] = { ".pyc", ".jpg", ".jpeg", ".png", ".gif", - ".zip", ".tar", ".xz", ".gz", ".gzip", - ".jar", ".apk", ".deb" }; +char *ignored_extensions[] = {".pyc", ".jpg", ".jpeg", ".png", ".gif", + ".zip", ".tar", ".xz", ".gz", ".gzip", + ".jar", ".apk", ".deb", ".o"}; size_t ignored_extensions_size = - sizeof(ignored_extensions) / sizeof(ignored_extensions[0]); - -int get_value(void *m, const char *section, const char *key, const char *value); + sizeof(ignored_extensions) / sizeof(ignored_extensions[0]); |