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
|
|
|
*
|
2006-05-19 19:29:19 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2001-03-23 17:02:05 +00:00
|
|
|
#include <string.h>
|
2001-03-16 22:47:14 +00:00
|
|
|
#include "libbb.h"
|
|
|
|
|
2002-01-02 18:51:23 +00:00
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
void chomp(char *s)
|
|
|
|
{
|
2002-01-02 18:51:23 +00:00
|
|
|
char *lc = last_char_is(s, '\n');
|
2004-03-15 08:29:22 +00:00
|
|
|
|
2002-01-02 18:51:23 +00:00
|
|
|
if(lc)
|
|
|
|
*lc = 0;
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|