applied yet another proposal of Manuel

This commit is contained in:
arg@mig29 2006-11-26 15:43:16 +01:00
parent 61a1910f91
commit 2210ea7e3b
1 changed files with 2 additions and 2 deletions

4
main.c
View File

@ -284,8 +284,8 @@ main(int argc, char *argv[]) {
readin = False;
break;
default:
stext[r - (stext[r - 1] == '\n' ? 1 : 0)] = '\0';
for(p = stext + strlen(stext) - 1; p > stext && *p != '\n'; --p);
for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
for(p = stext + strlen(stext) - 1; p >= stext && *p != '\n'; --p);
if(p > stext)
strncpy(stext, p + 1, sizeof stext);
}