2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) many different people.
|
2003-07-14 21:21:08 +00:00
|
|
|
* If you wrote this, please acknowledge your work.
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2010-08-16 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libbb.h"
|
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC chomp(char *s)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2002-01-02 18:51:23 +00:00
|
|
|
char *lc = last_char_is(s, '\n');
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2006-11-10 23:25:53 +00:00
|
|
|
if (lc)
|
2007-05-08 17:52:17 +00:00
|
|
|
*lc = '\0';
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|