Lines Matching +defs:val +defs:name
18 * information: Portions Copyright [yyyy] [name of copyright owner]
55 char *name;
72 set_option(char *name, char *val)
79 for (opt = options; opt->name; opt++) {
80 if (strcasecmp(name, opt->name) == 0) {
83 p = strdup(val);
87 if (val && *val == '\0')
90 n = atoi(val);
98 fd = open(val, O_WRONLY | O_CREAT, 0644);