Home | History | Annotate | Download | only in posix

Lines Matching refs:sflags

198   unsigned sflags; // s///flag bits: i=1, g=2, p=4
482 off = command->sflags>>3;
542 if (!(command->sflags & 2)) break;
547 if (command->sflags & 4) emit(line, len, eol);
867 if (0 <= (l = stridx("igp", *line))) command->sflags |= 1<<l;
868 else if (!(command->sflags>>3) && 0<(l = strtol(line, &line, 10))) {
869 command->sflags |= l << 3;
878 ((toys.optflags & FLAG_r)*REG_EXTENDED)|((command->sflags&1)*REG_ICASE));