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 <string.h>
#include "libbb.h" #include "libbb.h"
void chomp(char *s) void chomp(char *s)
{ {
char *lc = last_char_is(s, '\n'); if (!(s && *s)) return;
while (*s && (*s != '\n')) s++;
if(lc) *s = 0;
*lc = 0;
} }