| 41 | ****************************************************************************/ |
| 42 | |
| 43 | static inline char *getfilepath(const char *name) |
| 44 | { |
| 45 | snprintf(line, PATH_MAX, "%s/" DEFCONFIG, name); |
| 46 | line[PATH_MAX] = '\0'; |
| 47 | return strdup(line); |
| 48 | } |
| 49 | |
| 50 | static void show_usage(const char *progname) |
| 51 | { |