Lines Matching defs:to
36 // For -n just tell kernel to which messages to keep.
40 char *data, *to, *from;
46 data = to = from = xmalloc(size+1);
54 char *to;
56 if (*from == '<' && (to = strchr(from, '>'))) from = ++to;
57 if ((toys.optflags&FLAG_t) && *from == '[' && (to = strchr(from, ']')))
58 from = to+1+(to[1]==' ');
60 *(to++) = *(from++);
61 } else to = data+size;
65 if (to != data) {
66 xwrite(1, data, to-data);
67 if (to[-1] != '\n') xputc('\n');