From 79a466f1285509853b2fa37351219d58506c58c4 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Sat, 29 Dec 2001 07:26:33 +0000
Subject: optimize this a little bit.

---
 libbb/chomp.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

(limited to 'libbb')

diff --git a/libbb/chomp.c b/libbb/chomp.c
index 94404a98d..e5a522f01 100644
--- a/libbb/chomp.c
+++ b/libbb/chomp.c
@@ -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;
 }
 
 
-- 
cgit v1.2.3-55-g6feb