1 /* config_filter.h: handle hidden or non-configuration files in config dirs.
3 These functions are called whenever we will parse configuration files to
4 ensure we are not picking up backups, SCM meta data, package artifacts.
5 Eventually all config files will have to follow a convention so these
6 lists of possible exceptions should not have to grow by very much.
8 #ifndef _MODINITTOOLS_CONFIG_FILTER_H
9 #define _MODINITTOOLS_CONFIG_FILTER_H
11 /* returns 0 if the name matches a well-known backup pattern */
12 int config_filter(const char *name
);