optimize this a little bit.
This commit is contained in:
parent
6d13964714
commit
79a466f128
@ -25,13 +25,11 @@
|
||||
#include <string.h>
|
||||
#include "libbb.h"
|
||||
|
||||
|
||||
void chomp(char *s)
|
||||
{
|
||||
char *lc = last_char_is(s, '\n');
|
||||
|
||||
if(lc)
|
||||
*lc = 0;
|
||||
if (!(s && *s)) return;
|
||||
while (*s && (*s != '\n')) s++;
|
||||
*s = 0;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user