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 trim(char *s)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2005-09-01 10:23:57 +00:00
|
|
|
size_t len = strlen(s);
|
2001-04-23 17:04:41 +00:00
|
|
|
|
2001-03-16 22:47:14 +00:00
|
|
|
/* trim trailing whitespace */
|
2007-10-29 19:22:13 +00:00
|
|
|
while (len && isspace(s[len-1]))
|
|
|
|
--len;
|
2001-03-16 22:47:14 +00:00
|
|
|
|
|
|
|
/* trim leading whitespace */
|
2007-04-12 00:32:05 +00:00
|
|
|
if (len) {
|
2009-10-22 20:28:08 +00:00
|
|
|
char *nws = skip_whitespace(s);
|
|
|
|
if ((nws - s) != 0) {
|
|
|
|
len -= (nws - s);
|
|
|
|
memmove(s, nws, len);
|
2007-10-29 19:22:13 +00:00
|
|
|
}
|
2005-09-01 10:23:57 +00:00
|
|
|
}
|
2007-04-12 00:32:05 +00:00
|
|
|
s[len] = '\0';
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|