Home | History | Annotate | Download | only in mount_puffs

Lines Matching defs:opt

117 static void add_opt(char **opts, const char *opt)
121 *opts = erealloc(*opts, orig_len + 1 + strlen(opt) + 1);
124 strcpy(*opts, opt);
128 strcat(*opts, opt);
143 for (char *opt = optarg; (opt = strtok(opt, ",")) != NULL; opt = NULL) {
144 if (strcmp(opt, "getargs") == 0) {
149 add_opt(&opts, opt);