135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
fprintf(stderr, "Invalid line: \"%s\"\n", linebuf);
#endif
continue;
}
/* Delete space at the end of the command. */
cmdend--; /* It currently derefs to the seperator.. */
while (*cmdend <= ' ') {
*cmdend = '\0';
cmdend--;
}
cmd = linebuf_ptr;
/* Delete the seperator char and any leading space. */
|
|
|
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
fprintf(stderr, "Invalid line: \"%s\"\n", linebuf);
#endif
continue;
}
/* Delete space at the end of the command. */
cmdend--; /* It currently derefs to the seperator.. */
while (*cmdend <= ' ' && cmdend >= sep) {
*cmdend = '\0';
cmdend--;
}
cmd = linebuf_ptr;
/* Delete the seperator char and any leading space. */
|