Lines Matching refs:more
79 static long flag_opts(char *new, long flags, char **more)
122 if (more && i == ARRAY_LEN(opts)) {
123 i = *more ? strlen(*more) : 0;
124 *more = xrealloc(*more, i + strlen(new) + 2);
125 if (i) (*more)[i++] = ',';
126 strcpy(i+*more, new);
376 char *more = 0;
378 mount_filesystem(dev, dir, TT.type, flag_opts(opts, flags, &more), more);
379 if (CFG_TOYBOX_FREE) free(more);