pneubeck pointed out an obvious thing, that a second p = stext + strlen(stext) - 1 is unnecessary
This commit is contained in:
parent
e5765cdd84
commit
fd995dac78
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -273,7 +273,7 @@ main(int argc, char *argv[]) {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
for(stext[r] = '\0', p = stext + strlen(stext) - 1; p >= stext && *p == '\n'; *p-- = '\0');
|
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);
|
for(; p >= stext && *p != '\n'; --p);
|
||||||
if(p > stext)
|
if(p > stext)
|
||||||
strncpy(stext, p + 1, sizeof stext);
|
strncpy(stext, p + 1, sizeof stext);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue