Home | History | Annotate | Download | only in pending

Lines Matching refs:rbytes

143   int fd, len, rbytes = 0;
147 rbytes = readall(fd, toybuf, sizeof(toybuf));
149 if (rbytes <= 0) {
153 toybuf[rbytes] = '\0';
154 while (--rbytes >= 0 && toybuf[rbytes] == '\0') continue;
164 for (; rbytes >= 0; rbytes--)
165 if ((unsigned char)toybuf[rbytes] < ' ') toybuf[rbytes] = ' ';
171 rbytes = strlen(toybuf);
172 memmove(toybuf+ len, toybuf, rbytes+1);