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