Home | History | Annotate | Download | only in pending

Lines Matching refs:toys

40 #include "toys.h"
47 toys.exitval = 2;
48 if (!strcmp("[", toys.which->name))
49 if (!strcmp("]", toys.optargs[--toys.optc])) error_exit("Missing ']'");
50 if (!strcmp("!", toys.optargs[0])) {
52 toys.optargs++;
53 toys.optc--;
55 if (!toys.optc) toys.exitval = 0;
56 else if (toys.optargs[0][0] == '-') {
57 id = stridx("bcdefghLpSsurwxznt", toys.optargs[0][1]);
58 if (id == -1 || toys.optargs[0][2]) error_exit(err_fmt, toys.optargs[0]);
63 toys.exitval = 1;
64 if (lstat(toys.optargs[1], &st) == -1) return;
66 if (!nolink && (stat(toys.optargs[1], &st) == -1)) return;
68 if (id == 0) toys.exitval = !S_ISBLK(st.st_mode); // b
69 else if (id == 1) toys.exitval = !S_ISCHR(st.st_mode); // c
70 else if (id == 2) toys.exitval = !S_ISDIR(st.st_mode); // d
71 else if (id == 3) toys.exitval = 0; // e
72 else if (id == 4) toys.exitval = !S_ISREG(st.st_mode); // f
73 else if (id == 5) toys.exitval = !(st.st_mode & S_ISGID); // g
74 else if ((id == 6) || (id == 7)) toys.exitval = nolink; // hL
75 else if (id == 8) toys.exitval = !S_ISFIFO(st.st_mode); // p
76 else if (id == 9) toys.exitval = !S_ISSOCK(st.st_mode); // S
77 else if (id == 10) toys.exitval = st.st_size == 0; // s
78 else toys.exitval = !(st.st_mode & S_ISUID); // u
81 toys.exitval = access(toys.optargs[1], 1 << (id - 12)) == -1;
83 toys.exitval = toys.optargs[1] && !*toys.optargs[1] ^ (id - 15);
86 toys.exitval = tcgetattr(atoi(toys.optargs[1]), &termios) == -1;
89 else if (toys.optc == 1) toys.exitval = *toys.optargs[0] == 0;
90 else if (toys.optc == 3) {
91 if (*toys.optargs[1] == '-') {
92 long a = atol(toys.optargs[0]), b = atol(toys.optargs[2]);
94 s = toys.optargs[1] + 1;
95 if (!strcmp("eq", s)) toys.exitval = a != b;
96 else if (!strcmp("ne", s)) toys.exitval = a == b;
97 else if (!strcmp("gt", s)) toys.exitval = a < b;
98 else if (!strcmp("ge", s)) toys.exitval = a <= b;
99 else if (!strcmp("lt", s)) toys.exitval = a > b;
100 else if (!strcmp("le", s)) toys.exitval = a >= b;
101 else error_exit(err_fmt, toys.optargs[1]);
104 int result = strcmp(toys.optargs[0], toys.optargs[2]);
106 s = toys.optargs[1];
107 if (!strcmp("=", s)) toys.exitval = !!result;
108 else if (!strcmp("!=", s)) toys.exitval = !result;
109 else error_exit(err_fmt, toys.optargs[1]);
112 toys.exitval ^= not;