Displaying 1 result from an estimated 1 matches for "c305977b".
2009 Apr 27
2
Change Termination of Read Command
Greetings all,
This is a "just-for-fun" question. I was reading the
support forum and a fellow there wanted Read() to stop on * instead of #. I
thought that changing app_read.c would resolve this
current
if (tmp[x-1] == '#') {
tmp[x-1] = '\0';
break;
new
}if (tmp[x-1] == '*') {
tmp[x-1] = '\0';
break;
}
He applied