optimize this a little bit.

This commit is contained in:
Eric Andersen 2001-12-29 07:26:33 +00:00
parent 6d13964714
commit 79a466f128

View File

@ -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;
}